@charset "utf-8";
/*------------------------------------------------------------------
[Momentum Library Stylesheet]

Project: Momentum Website
Version: 1.1.01
Last change: 16 July 2024  
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]

1. Fonts
    1.1. Karbon
2. Global variables
3. Global styles
4. Spacing
5. Navigation
6. Footer
4. Header
    4.1. 3rd Level
5. Content-Container

/* ==============================
1. Fonts
============================== */

@font-face {
    font-family: 'Karbon';
    src: url('../webfonts/karbon-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Karbon';
    src: url('../webfonts/karbon-medium.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Karbon';
    src: url('../webfonts/karbon-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ==============================
2. Global variables
============================== */

:root{
    /* Fonts */
    --font-size: 16px;
    --font-global: Karbon, arial, sans-serif;
    --bold: 700;
    --medium: 600;
    --regular: 400;
    /* Color */
    --white: #FFFFFF;
    --gray-900: #0A0A0A;
    --gray-800: #363635;
    --gray-700: #4C4B4A;
    --gray-600: #787572;
    --gray-500: #8E8A87;
    --gray-400: #A4A09D;
    --gray-300: #D0CCC9;
    --gray-200: #F2F2F2;
    --gray-100: #F9F9F9;
    --lavender-900: #6A57B2;
    --lavender-800: #9165B8;
    --lavender-700: #B484C2;
    --lavender-600: #D4A4CB;
    --lavender-500: #EFC4D6;
    /* Line Height */
    --lh-equal: 1;
    --lh-slight: 1.25;
    /* Letter Spacing */
    --ls-tiny: -0.25px;
    --ls-narrow: -1px;
    --ls-slightly: .5px;
    --ls-wider: 1px;
    /* Width */
    --w-available: -webkit-fill-available;
    --w-full: 100%;
    --w-fit: fit-content;
    --w-maxcon: max-content;
    /* Border Radius */
    --br-small: .25rem;
    --br-medium: .5rem;
    --br-full: 10rem;
    /* Transitions */
    --transall-300-easy: all 300ms ease-in-out;
}

/* ==============================
3. Global styles
============================== */

*{
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html{
    font-size: var(--font-size);
    overflow-y: scroll;
    -ms-overflow-style: scrollbar;
    font-family: var(--font-global);
}

html, body{
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;    
}

a{
    text-decoration: none;
}

.hasBackground{
    background-image: url("../images/momentum-pattern-white-04.jpg");
    background-color: var(--gray-100);
    height: auto;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}

.inactiveLink:hover{
    cursor: default !important;
}

.btn-primary{
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    width: var(--w-maxcon);
    padding: .25rem .25rem .25rem 1.5rem;
    background-color: var(--lavender-900);
    border-radius: var(--br-full);
    color: var(--lavender-500);
    font-size: 1rem;
    line-height: var(--lh-equal);
    font-weight: var(--bold);
    transition: var(--transall-300-easy);
}

.btn-primary:hover{
    background-color: var(--lavender-500);
    color: var(--lavender-900);
}

.btn-tertiary{
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    width: var(--w-fit);
    padding: .25rem .25rem .25rem 1.5rem;
    background-color: var(--lavender-500);
    border-radius: var(--br-full);
    color: var(--lavender-900);
    font-size: 1rem;
    line-height: var(--lh-equal);
    font-weight: var(--bold);
    transition: var(--transall-300-easy);
}

.btn-tertiary:hover{
    background-color: var(--lavender-900);
    color: var(--lavender-500);
}

.btn-tertiary-contact{
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    width: var(--w-fit);
    padding: .25rem 1.5rem .25rem .25rem;
    background-color: var(--gray-300);
    border-radius: var(--br-full);
    color: var(--gray-800);
    font-size: 1rem;
    line-height: var(--lh-equal);
    font-weight: var(--bold);
    transition: var(--transall-300-easy);
}

.btn-tertiary-contact:hover{
    background-color: var(--gray-800);
    color: var(--gray-300);
}

.flex-end{
    align-items: flex-end;
}

.jc-sb{
    justify-content: space-between;
}

.d-flex{
    display: flex;
}

.col{
    flex-direction: column !important;
}

.row{
    flex-direction: row;
}

.ai-center{
    align-items: center;
}

.svg-multiply{
    mix-blend-mode: multiply;
}

.svg-screen{
    mix-blend-mode: screen;
}

.text-center{
    text-align: center;
}


/* ==============================
Spacing
============================== */

.s-p-trbl-8{
    padding: .5rem;
}

.g-0{
    gap: 0 !important;
}

.g-1{
    gap: 1rem;
}

.g-2{
    gap: 2rem;
}

.g-3{
    gap: 3rem;
}

/* ==============================
Navigation
============================== */

.nav-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: var(--w-available);
    box-sizing: border-box;
    border-radius: var(--br-medium);
    margin: 1.5rem 3rem 0 3rem;
    padding: .5rem 2rem;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(.75rem);
    z-index: 99;

    & .dropdown-menu {
        position: relative;
        display: inline-block;
    }
    
    & .menu-content-wrapper {
        display: none;
        position: absolute;
        z-index: 1;

        & .menu-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            flex-wrap: nowrap;
            background-color: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(.5rem);
            padding: 1.5rem;
            border-radius: var(--br-medium);
            min-width: 110px;

            & a{
                text-transform: none;
                letter-spacing: 0;
                font-size: 1.125rem;
                font-weight: var(--medium);
                padding-bottom: 1rem;
                border-bottom: 1px solid var(--gray-300);
            }

            & a:last-child{
                border-bottom: none;   
            }

            & .links-hidden {
                display: block;
            }

            & .links-hidden:last-child{
                padding-bottom: 0;
            }
        }

        & .nav-helper{
            height:3rem; 
            background:transparent; 
            width:100%;
        }
    }

    & svg{
        width: 10rem;
    }

    & .inner-nav{
        display: flex;
        flex-direction: row;
        gap: 3rem;

        & a{
            font-size: .95rem;
            text-transform: uppercase;
            letter-spacing: var(--ls-wider);
            font-weight: var(--bold);
            color: var(--gray-900);
            text-decoration: none;
            transition: var(--transall-300-easy);
    
            & svg{
                width: auto;
                position: relative;
                top: -3px;
                margin-left: .125rem;
                fill: var(--gray-900);
                transform-origin: center;
                transition: var(--transall-300-easy);
            }
        }

        & .active{
            color: var(--lavender-900);

            & svg{
                transform: rotate(-180deg);
                fill: var(--lavender-900);
            }
        }

        & a:hover{
            color: var(--lavender-900);
            cursor: pointer;

            & svg{
                transform: rotate(-180deg);
                fill: var(--lavender-900);
            }
        }

        & .dropdown-menu:hover .menu-content-wrapper {
            display: block;
        }

        & .dropdown-menu:hover{
            > a{
                color: var(--lavender-900);
            }
            & svg{
                transform: rotate(-180deg);
                fill: var(--lavender-900);
            }
        }
    }
}

.nav-container-mobile{
    display: none;
}

/* ==============================
Footer
============================== */

footer{
    padding: 5rem 6rem 0 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background-image: url("../images/momentum-pattern-white-04.jpg");
    background-color: var(--gray-100);
    height: auto;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;

    & #footer-logo{
        margin-bottom: 5rem;
    }

    & .mirror-nav{
        width: var(--w-full);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
        padding-bottom: 1.5rem;
        border-radius: var(--br-small);
        border-bottom: 1px solid var(--gray-200);
        margin-bottom: 1.5rem;
    }

    & .mirror-nav-container{
        display: flex;
        flex-direction: column;
        gap: 1.5rem;

        & h4{
            color: var(--gray-800);
            font-size: 1.5rem;
            font-weight: var(--medium);
            line-height: var(--lh-equal);
        }

        & .mirror-nav-container-list{
            display: flex;
            flex-direction: column;
            gap: .5rem;
        }

        & .button-row{
            display: flex;
            flex-direction: row;
            gap: 1.5rem;
        }

        & a{
            color: var(--gray-700);
            font-size: 1.075rem;
            font-weight: var(--gray-600);
            line-height: 1.25rem;
            text-decoration: none;
            transition: var(--transall-300-easy);
        }

        & a:hover{
            color: var(--lavender-600);
        }

        & p{
            color: var(--gray-800);
            font-size: 1.075rem;
            font-weight: var(--regular);
            line-height: var(--lh-slight);
        }

        & span{
            color: var(--gray-900);
            font-weight: var(--medium);
        }
    }

    & .contact-container{
        width: var(--w-full);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
        padding-bottom: 1.5rem;
        border-radius: var(--br-small);
        border-bottom: 1px solid var(--gray-200);
        margin-bottom: 1.5rem;
    }

    & .end-credits{
        width: var(--w-full);
        display: flex;
        flex-direction: row;
        gap: 1rem;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 3rem;

        & p{
            color: var(--gray-800);
            font-size: .925rem;
            font-weight: var(--bold);
            line-height: var(--lh-equal);
            letter-spacing: var(--ls-slightly);
            text-transform: uppercase;
        }

        & .utility{
            display: flex;
            flex-direction: row;
            gap: 2rem;
            align-items: flex-end;

            & a{
                color: var(--gray-800);
                text-align: right;
                font-size: 1rem;
                font-weight: var(--medium);
                line-height: var(--lh-equal);
                text-decoration: none;
                transition: var(--transall-300-easy);
            }

            & a:hover{
                color: var(--lavender-600);
            }
        }
    }
}

/* ==============================
Header - 2rd Level
============================== */

.container-header-2rd-level{
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding: 46vh 6rem 6rem 6rem;
    background-image: url("../images/momentum-contact-pattern-bg.jpg");
    background-color: var(--gray-100);
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    & h1{
        color: var(--gray-900);
        font-size: 6rem;
        line-height: var(--lh-equal);
        letter-spacing: var(--ls-narrow);
        font-weight: var(--bold);
    }

    & p{
        color: var(--gray-700);
        font-size: 2rem;
        line-height: var(--lh-equal);
        letter-spacing: var(--ls-tiny);
        font-weight: var(--medium);
    }
}


/* ==============================
Header - 3rd Level
============================== */

.container-header-3rd-level{
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding: 40vh 6rem 6rem 6rem;
    background-image: url("../images/momentum-newsroom-pattern-bg.jpg");
    background-color: var(--gray-100);
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    & h1{
        color: var(--gray-900);
        font-size: 6rem;
        line-height: var(--lh-equal);
        letter-spacing: var(--ls-narrow);
        font-weight: var(--bold);
    }

    & p{
        color: var(--gray-700);
        font-size: 2rem;
        line-height: var(--lh-equal);
        letter-spacing: var(--ls-tiny);
        font-weight: var(--medium);
    }
}

/* ==============================
Header - 3rd Level Variant 02
============================== */

.container-header-3rd-level-v2{
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding: 40vh 6rem 6rem 6rem;
    background-image: url("../images/momentum-platform-pattern-bg.jpg");
    background-color: var(--gray-100);
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    & h1{
        color: var(--white);
        font-size: 6rem;
        line-height: var(--lh-equal);
        letter-spacing: var(--ls-narrow);
        font-weight: var(--bold);
    }

    & p{
        color: var(--white);
        font-size: 2rem;
        line-height: var(--lh-equal);
        letter-spacing: var(--ls-tiny);
        font-weight: var(--medium);
    }
}

/* ==============================
Header - 4th Level
============================== */

.container-header-4th-level{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 30vh 6rem 6rem 6rem;

    & h1{
        color: var(--gray-900);
        font-size: 5rem;
        line-height: var(--lh-equal);
        letter-spacing: var(--ls-narrow);
        font-weight: var(--bold);
    }

    & h4{
        color: var(--lavender-900);
        font-size: 1.8rem;
        line-height: var(--lh-equal);
        letter-spacing: var(--ls-wider);
        font-weight: var(--bold);
        text-transform: uppercase;
    }
}

/* ==============================
Content-Container
============================== */

.content-container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 6rem;

    & h3{
        font-size: 3rem;
        line-height: var(--lh-equal);
        color: var(--gray-900);
        font-weight: var(--bold);
    }

    & h5{
        font-size: 1.25rem;
        line-height: var(--lh-equal);
        color: var(--gray-900);
        font-weight: var(--bold);
    }

    & p{
        font-size: 1.5rem;
        font-weight: var(--regular);
        line-height: var(--lh-slight);
        color: var(--gray-700);
    }

    & .media-col-2{
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: center;

        & .media-col-2-left{
            display: flex;
            flex-basis: 33.3%;
        }

        & .media-col-2-right{
            display: flex;
            flex-direction: row;
            flex-basis: 66.6%;
            gap: 2em;
            justify-content: space-between;
            align-items: center;

            & .media-col-2-right-container{
                display: flex;
                flex-direction: column;
                gap: 1rem;

                & .download-link{
                    font-size: 1rem;
                    background-color: var(--gray-100);
                    padding: .5rem 1rem;
                    border-radius: var(--br-small);
                    font-weight: var(--bold);
                    color: var(--gray-800);
                    text-decoration: none;
                    transition: var(--transall-300-easy);
                }

                & .download-link:hover{
                    color: var(--lavender-600);
                    background-color: var(--gray-200);
                }
            }
        }

        & .media-row-2-right{
            display: flex;
            flex-direction: column;
            flex-basis: 66.6%;
            gap: 2em;
            justify-content: space-between;
            align-items: center;
        }
    }

    & .img-container{
        margin: 0 16rem 4rem 16rem;
        text-align: center;

        & img{
            width: 100%;
            height: auto;
        }
    }

    & .text-container{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 0 16rem;

        & h3{
            font-size: 2rem;
            line-height: var(--lh-equal);
            font-weight: var(--bold);
            color: var(--gray-900);
            margin-top: 1.5rem;
        }

        & p{
            font-size: 1.75rem;
            line-height: var(--lh-slight);
            font-weight: var(--regular);
            color: var(--gray-700);
        }

        & span{
            font-weight: var(--medium);
            color: var(--lavender-900);
            padding-right: 0.5rem;
        }

        & .quote-container{
            margin: 4rem 6rem 2rem;

            & .quote-icon{
                position: absolute;
                z-index: 1;
                margin-left: -2.5rem;
                margin-top: -1.5rem;
                opacity: 0.3;
            }

            & quote{
                font-size: 1.75rem;
                line-height: var(--lh-slight);
                font-weight: var(--bold);
                color: var(--lavender-900);
                z-index: 2;
                position: relative;
            }

            & .quote-details{
                display: flex;
                flex-direction: row;
                gap: 1.5rem;
                margin-top: 2rem;
                align-items: center;

                & img{
                    width: 6rem;
                    height: 6rem;
                }

                & .quote-details-name{
                    display: flex;
                    flex-direction: column;
                    gap: .5rem;

                    & h5{
                        font-size: 1.5rem;
                        line-height: var(--lh-equal);
                        font-weight: var(--regular);
                        color: var(--gray-900);
                    }

                    & h6{
                        font-size: 0.75rem;
                        line-height: var(--lh-equal);
                        font-weight: var(--bold);
                        color: var(--gray-800);
                        text-transform: uppercase;
                        letter-spacing: var(--ls-slightly);
                    }
                }
            }
        }

        & .follow-up-info{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;

            & p{
                font-size: 1.25rem;
                line-height: var(--lh-equal);
                font-weight: var(--medium);
                color: var(--gray-900);
            }

            & .follow-detail{
                display: flex;
                flex-direction: column;
                gap: .25rem;

                & a{
                    color: var(--lavender-900);
                    font-size: 1.25rem;
                    font-weight: var(--medium);
                }
            }
        }
    }

    & .newspage-wrapper{
        display: flex;
        flex-direction: column;
        gap: 1rem;

        & .news-row{
            display: flex;
            flex-direction: row;
            gap: 1rem;

            & a{
                width: 33.3%;
            }
        
            & .news-card{
                background-image: url("../images/momentum-pattern-white-04.jpg");
                background-color: var(--lavender-500);
                height: auto;
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
                width: auto;
                height: auto;
                padding: 2rem;
                border-radius: .5rem;
                display: flex;
                flex-direction: column;
                gap: 2rem;
                border: 1px solid var(--gray-100);

                & .category{
                    
                    & h5{
                        font-size: 1rem;
                        line-height: var(--lh-equal);
                        font-weight: var(--bold);
                        color: var(--lavender-900);
                        background-color: var(--lavender-500);
                        width: min-content;
                        white-space: nowrap;
                        text-transform: uppercase;
                        padding: .5rem 1.5rem;
                        border-radius: var(--br-full);
                    }
                }

                & .content{
                    display: flex;
                    flex-direction: column;
                    gap: .5rem;

                    & p{
                        font-size: 1.25rem;
                        line-height: var(--lh-equal);
                        font-weight: var(--medium);
                        color: var(--lavender-900);
                    }

                    & h2{
                        font-size: 1.75rem;
                        line-height: var(--lh-slightly);
                        font-weight: var(--bold);
                        color: var(--gray-900);
                    }
                }
            }
        
            & a:hover{ 
                
                & .news-card{
                    background-image: url("../images/momentum-pattern-lavender-500-01.jpg");
                    border: 1px solid var(--lavender-500);
                    transition: var(--transall-300-easy);

                    & .category{
                        
                        & h5{
                            color: var(--lavender-500);
                            background-color: var(--lavender-900);
                            transition: var(--transall-300-easy);
                        }
                    }
                }
            }
        }
    }

    & .introduction {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        padding: 0 12rem;

        & h2{
            color: var(--gray-900);
            text-align: center;
            font-size: 2.125rem;
            font-weight: var(--bold);
            line-height: var(--lh-equal);
        }

        & p{
            color: var(--gray-800);
            text-align: center;
            font-size: 1.5rem;
            font-weight: var(--medium);
            line-height: 1.75rem;
        }
    }
}

.contact-wrapper{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: top;
    width: var(--w-full);
    justify-content: space-between;
}

.content-col-2{
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin-bottom: 6rem;

    & .content-col-left{
        flex-basis: 40%;

        & h2{
            font-size: 3rem;
            line-height: var(--lh-equal);
            font-weight: var(--bold);
            color: var(--gray-900);
        }
    }

    & .content-col-right{
        flex-basis: 60%;
        gap: 1rem;
        display: flex;
        flex-direction: column;

        & p{
            color: var(--gray-700);
            line-height: var(--lh-slightly);
        }
    }
}

.content-col-law-2{
    display: flex;
    flex-direction: row;
    gap: 6rem;
    align-items: center;
    padding: 2rem 6rem;
    border-radius: var(--br-medium);
    background-image: url("../images/momentum-pattern-white-04.jpg");
    background-color: var(--lavender-500);
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    & .content-col-left{
        flex-basis: 30%;

        & svg{
            width: 100%;
            height: auto;
        }
    }

    & .content-col-right{
        flex-basis: 70%;
        gap: 2rem;
        display: flex;
        flex-direction: column;

        & h2{
            font-size: 3rem;
            line-height: var(--lh-equal);
            font-weight: var(--bold);
            color: var(--gray-900);
        }

        & p{
            color: var(--gray-800);
            line-height: var(--lh-slightly);
        }
    }
}

.founder-wrapper{
    display: flex;
    flex-direction: column;
    gap: 6rem;
    align-items: center;

    & h2{
        font-size: 3rem;
        line-height: var(--lh-equal);
        font-weight: var(--bold);
        color: var(--gray-900);
    }

    & .founder-sorting{
        display: flex;
        flex-direction: row;
        gap: 10rem;
        justify-content: space-between;
        align-items: center;

        & .co-founder-linkedin{
            display: flex;
            flex-direction: row;
            gap: 1rem;
            align-items: center;
        }

        & h3{
            font-size: 2.5rem;
            line-height: var(--lh-equal);
            font-weight: var(--bold);
            color: var(--gray-900);
            margin-bottom: .25rem;
        }

        & h4{
            font-size: 1.5rem;
            line-height: var(--lh-equal);
            font-weight: var(--medium);
            color: var(--gray-700);
            margin-bottom: 3rem;
        }

        & a{
            font-size: 1.5rem;
            line-height: var(--lh-equal);
            font-weight: var(--medium);
            color: var(--lavender-900);
            text-decoration: none;
            transition: var(--transall-300-easy);
        }

        & a:hover{
            text-decoration: none;
            color: var(--lavender-700);
        }

        & img{
            mix-blend-mode: multiply;
        }
    }
}

/* Free of Charge Container */
.free-of-charge-container{
    display: flex;
    flex-direction: column;
    padding: 4rem 6rem;
    margin: 0 6rem;
    gap: 3rem;
    align-items: center;
    background-image: url("../images/momentum-pattern-lavender-500-01.jpg");
    background-color: var(--gray-100);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--br-medium);

    & .headlines{

        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;

        & h2{
            color: var(--gray-800);
            text-align: center;
            font-size: 2.25rem;
            font-weight: 700;
            line-height: var(--lh-equal);
        }

        & p{
            color: var(--gray-800);
            text-align: center;
            font-size: 1.5rem;
            font-weight: var(--medium);
            line-height: var(--lh-equal);
        }
    }

    & .facts-container{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 4rem;

        & .facts-row{
            display: flex;
            flex-direction: row;
            gap: 1rem;
        }

        & .facts-card{
            display: flex;
            flex-direction: row;
            border-radius: var(--br-medium);
            border: 1px solid var(--gray-200);
            background: rgba(255, 255, 255, 0.40);
            backdrop-filter: blur(4px);
            justify-content: space-between;
            align-items: center;
            width: 33.3%;
            
            & h3{
                color: var(--gray-800);
                font-size: 1.5rem;
                font-weight: var(--bold);
                line-height: var(--lh-equal);
                padding-left: 2rem;
                width: 100%;
            }

            & svg{
                width: var(--w-full);
            }
        }
    }

    & .sign-up-box{
        display: flex;
        flex-direction: row;
        gap: 3rem;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 2rem 4rem;
        box-sizing: border-box;
        margin: 2rem 6rem 0 6rem;
        border-radius: var(--br-medium);
        border: 1px solid var(--lavender-600);
        background: rgba(106, 87, 178, 0.05);
        backdrop-filter: blur(4px);
        width: auto;

        & .content{
            display: flex;
            flex-direction: column;
            gap: 2rem;

            & h4{
                color: var(--gray-800);
                font-size: 1.75rem;
                font-weight: var(--bold);
                line-height: var(--lh-equal);
            }

            & p{
                color: var(--gray-800);
                font-size: 1.5rem;
                font-weight: var(--regular);
                line-height: var(--lh-slight);
            }
        }
    }
}

/* Payed Components Container */
.payed-components{ 
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 4rem;

    & .payed-box{
        display: flex;
        position: relative;
        flex-direction: column;
        gap: 1rem;
        padding: 2.5rem 2.5rem 4rem 2.5rem;
        border-radius: var(--br-medium);
        width: var(--w-full);
        background-image: url("../images/momentum-pattern-lavender-500-01.jpg");
        background-color: var(--gray-100);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;

        & h4{
            color: var(--gray-800);
            font-size: 2rem;
            font-weight: var(--bold);
            line-height: var(--lh-equal);
        }

        & h6{
            position: absolute;
            bottom: 1.5rem;
            right: 2.5rem;
            color: var(--lavender-500);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: var(--ls-wider);
            font-weight: var(--bold);
            line-height: var(--lh-equal);
            padding: .5rem 1rem;
            background-color: var(--gray-700);       
            border-radius: var(--br-full); 
        }

        & p{
            color: var(--gray-700);
            font-size: 1.5rem;
            font-weight: var(--medium);
            line-height: var(--lh-slightly);
        }

        & ul{     
            list-style-type: none;
            margin-block-start: 0;
            margin-block-end: 0;
            padding-inline-start: 0;
            margin-top: 1.5rem;
        }

        & li{
            padding: .5rem;
            border-bottom: 1px solid var(--lavender-600);
        }

        & li:last-child {
            border-bottom: none;
        }

        & .li-item{
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 1rem;
            align-items: baseline;
        }
    }
}

/* Calculator Area */
.calculator-area{
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: var(--br-medium);
    gap: 2rem;
    margin-bottom: 4rem;

    & .headline{
        display: flex;
        flex-direction: column;
        gap: .25rem;

        & h3{
            color: var(--gray-700);
            font-size: 1.75rem;
            font-weight: var(--bold);
            line-height: var(--lh-equal);
        }

        & p{
            color: var(--gray-600);
            font-size: 1.5rem;
            font-weight: var(--regular);
            line-height: var(--lh-equal);
        }
    }

    & .content-wrapper{
        display: flex;
        flex-direction: row;
        gap: 6rem;
        align-items: flex-start;
        margin-top: 1rem;

        & .content{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: var(--w-full);

            & .note{
                color: var(--gray-600);
                font-size: 1.125rem;
                font-weight: var(--regular);
                line-height: var(--lh-slightly);
                margin-top: 1.5rem;
            }

            & .slider{
                display: flex;
                flex-direction: row;
                gap: 3rem;
                justify-content: space-between;
                align-items: center;

                & .group-input{
                    display: flex;
                    flex-direction: row;
                    align-items: center;

                    & label{
                        color: var(--gray-700);
                        font-size: 1.25rem;
                        font-weight: var(--medium);
                        line-height: var(--lh-equal);
                        white-space: nowrap;
                        margin-right: 1rem;
                    }
                }

                & .form-group input[type="number"]{
                    border-radius: var(--br-full);
                    text-align: center;
                    box-sizing: border-box;
                    padding: .5rem 1.5rem;
                    color: var(--lavender-900);
                    border: 1px solid var(--lavender-900);
                    background-color: var(--white);
                    font-weight: var(--medium);
                    font-size: 1rem;

                }

                & .form-group input::-webkit-outer-spin-button,
                input::-webkit-inner-spin-button{
                    -webkit-appearance: none;
                    margin: 0;
                }

                & .slidery{
                    width: var(--w-available);
                }

                & .form-group input[type="range"]{
                    width: var(--w-available);
                    box-sizing: border-box;
                    margin-top: .25rem;
                }

                & .sliderbar{
                    -webkit-appearance: none;
                    appearance: none;
                    height: .5rem;
                    background: var(--lavender-500);
                    outline: none;
                    border-radius: var(--br-full);
                    transition: var(--transall-300-easy);
                }

                & .sliderbar:hover {
                    background: var(--lavender-900);
                }

                & .sliderbar::-webkit-slider-thumb {
                    -webkit-appearance: none;
                    appearance: none;
                    width: 1.25rem;
                    height: 1.25rem;
                    border-radius: var(--br-full);
                    background: var(--lavender-900);
                    cursor: pointer;
                    transition: var(--transall-300-easy);
                }
                  
                .slider::-moz-range-thumb {
                    width: 1.25rem;
                    height: 1.25rem;
                    border-radius: var(--br-full);
                    background: var(--lavender-900);
                    cursor: pointer;
                    transition: var(--transall-300-easy);
                }
            }

            & .checkboxes{
                display: flex;
                flex-direction: row;
                gap: 2rem;
                margin-top: 1rem;

                & [type="checkbox"] {
                    position: relative;
                    left: 0px;
                    top: 0px;
                    z-index: 0;
                    -webkit-appearance: none;
                    appearance: none;
                }

                [type="checkbox"] + label {
                    position: relative;
                    display: block;
                    cursor: pointer;
                    font-size: 1.25rem;
                    line-height: var(--lh-equal);
                    padding-left: 3.5rem;
                }
                [type="checkbox"] + label:before {
                    width: 2.75rem;
                    height: 1.5rem;
                    border-radius: var(--br-full);
                    border: none;
                    background-color: var(--gray-300);
                    content: "";
                    margin-right: 0;
                    transition: background-color 0.5s linear;
                    z-index: 5;
                    position: absolute;
                    left: 0px;
                }
                [type="checkbox"] + label:after {
                    width: 1.5rem;
                    height: 1.5rem;
                    border-radius: var(--br-full);
                    background-color: var(--gray-800);
                    content: "";
                    transition: all 0.1s linear;
                    position: absolute;
                    left: 0px;
                    top: 0px;
                    z-index: 10;
                }
                [type="checkbox"]:checked + label:before {
                    background-color: var(--lavender-500);
                }
                [type="checkbox"]:checked + label:after {
                    margin: 0 0 0 1.25rem;
                    background-color: var(--lavender-900);
                }
            }
        }

        & .results{
            width: var(--w-full);
            max-width: 40rem;
            display: flex;
            flex-direction: column;
            gap: .5rem;
            transform: translateY(-30%);
            text-align: right;

            & p{
                color: var(--gray-800);
                font-size: 1.25rem;
                font-weight: var(--medium);
                line-height: var(--lh-equal);
                border-bottom: 1px solid var(--gray-200);
                padding: .5rem 0 1rem;
            }

            & p:last-child{
                color: var(--gray-800);
                font-size: 1.5rem;
                font-weight: var(--bold);
                border-bottom: none;
            }
        }
    }
}

/* Text Image Container */
.text-image-container{
    display: flex;
    flex-direction: row;
    gap: 6rem;
    padding: 3rem;
    border-radius: var(--br-medium);
    align-items: center;
    justify-content: center;
    background-image: url("../images/momentum-pattern-lavender-500-01.jpg");
    background-color: var(--gray-100);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    & p{
        color: var(--gray-800);
        font-size: 1.75rem;
        font-weight: var(--medium);
        line-height: var(--lh-slight);
        width: 70%;
    }

    & svg{
        width: 30%;
        height: auto;
        mix-blend-mode: multiply;
    }
}

/* Text Image Jumbo */
.text-image-jumbo{
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 3rem 6rem;
    border-radius: var(--br-medium);
    align-items: center;
    justify-content: center;
    background-image: url("../images/momentum-pattern-lavender-500-01.jpg");
    background-color: var(--gray-100);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    p{
        text-align: center;
        font-size: 1.75rem;
        font-weight: var(--medium);
        line-height: var(--lh-slightly);
        width: 80%;
    }

    & .jumbo-cols{
        display: flex;
        flex-direction: row;
        gap: 3rem;
        width: var(--w-available);

        & svg{
            width: 50%;
        }

        & .content{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 50%;  
        }
    }
}

/* Black Container */
.black-container{
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 6rem 3rem;
    border-radius: var(--br-medium);
    align-items: center;
    justify-content: center;
    background-image: url("../images/momentum-pattern-gray-900-01.jpg");
    background-color: var(--gray-100);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    margin-top: 3rem;

    & h2{
        text-align: center;
        font-size: 2.5rem;
        font-weight: var(--bold);
        line-height: var(--lh-equal);
    }


    & .text-image-container-inner{
        display: flex;
        flex-direction: row;
        gap: 6rem;
        align-items: center;
        justify-content: center;

        & .text-wrapper{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 60%;

            & h3{
                color: var(--white);
                font-size: 1.75rem;
                font-weight: var(--bold);
                line-height: var(--lh-slight);
            }

            & p{
                color: var(--white);
                font-size: 1.5rem;
                font-weight: var(--regular);
                line-height: var(--lh-slightly);
            }
        }

        & svg{
            mix-blend-mode: plus-lighter;
        }
    }
    
    & .container-reverse{
        flex-direction: row;
    }
}

/* Related Components Container */
.related-components-container{
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;

    & h2{
        color: var(--gray-900);
        text-align: center;
        font-size: 2.5rem;
        font-weight: var(--bold);
        line-height: var(--lh-equal);
    }

    & .related-wrapper{
        display: flex;
        flex-direction: row;
        gap: 1rem;
        width: var(--w-available);
        align-items: normal;
        padding: 0;

        & .related-component{
            display: flex;
            flex-direction: column;
            gap: 3rem;
            background-image: url("../images/momentum-pattern-lavender-500-01.jpg");
            background-color: var(--lavender-500);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            align-items: center;
            justify-content: space-between;
            border-radius: var(--br-medium);
            width: var(--w-available);

            & h5{
                color: var(--gray-900);
                font-size: 1rem;
                font-weight: var(--bold);
                line-height: var(--lh-equal);
                letter-spacing: var(--ls-wider);
                text-transform: uppercase;
                padding: 1.5rem 1.5rem 0 1.5rem;
            }

            & h3{
                color: var(--gray-900);
                font-size: 1.75rem;
                font-weight: var(--bold);
                line-height: var(--lh-equal);
                padding: 0 1.5rem;
            }

            & .inner-text{
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            & svg{
                opacity: 0.9;
                width: 100%;
                height: auto;
            }
        }
    }
}

/* ==============================
Components
============================== */

/* Icon Text Box */
.iconTextBox{
    display: flex;
    flex-direction: row;
    gap: 6rem;
    padding: 3rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--br-medium);
    align-items: center;
    justify-content: center;
    background-image: url("../images/momentum-pattern-white-03.jpg");
    background-color: var(--gray-100);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    & .iconTextBox-Content{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        flex-basis: 50%;
    }

    & h2{
        font-size: 1.5rem;
        line-height: var(--lh-equal);
        color: var(--gray-700);
        font-weight: var(--bold);
    }

    & p{
        font-size: 1.25rem;
        line-height: var(--lh-slight);
        font-weight: var(--medium);
        color: var(--gray-600);
    }

    & a{
        color: var(--lavender-900);
        text-decoration: none;
        transition: var(--transall-300-easy);
    }

    & a:hover{
        color: var(--lavender-500);
    }

    & svg{
        max-height: 8rem;
        max-width: 8rem;
    }
}

/* Press Container */
.press-container{
    display: flex;
    flex-direction: row;
    gap: 6rem;
    padding: 3rem;
    border-radius: var(--br-medium);
    align-items: center;
    justify-content: center;
    background-image: url("../images/momentum-pattern-lavender-500-01.jpg");
    background-color: var(--lavender-500);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    & .press-container-Content{
        display: flex;
        flex-direction: column;
        gap: 2rem;

        & .press-container-header{
            display: flex;
            flex-direction: column;
            gap: .25rem;
        }

        & .press-container-wrapper{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
    }

    .press-container-lines{
        display: flex;
        flex-direction: row;
        gap: .5rem;

        & svg{
            height: 2rem;
            width: auto;
            margin-right: .5rem;
        }

        & a{
            font-size: 1.5rem;
            line-height: var(--lh-equal);
            color: var(--gray-800);
            font-weight: var(--medium);
            position: relative;
            top: 3px;
            transition: var(--transall-300-easy);
        }

        & p{
            font-size: 1.5rem;
            line-height: var(--lh-equal);
            color: var(--gray-800);
            font-weight: var(--medium);
            position: relative;
            top: 3px;
            transition: var(--transall-300-easy);
        }

        & a:hover{
            color: var(--lavender-900);
            cursor: pointer;
        }
    }

    & h2{
        font-size: 2rem;
        line-height: var(--lh-equal);
        color: var(--gray-700);
        font-weight: var(--bold);
    }

    & p{
        font-size: 1.5rem;
        line-height: var(--lh-slight);
        font-weight: var(--medium);
        color: var(--gray-600);
    }

    & a{
        color: var(--lavender-900);
        text-decoration: none;
        transition: var(--transall-300-easy);
    }

    & a:hover{
        color: var(--lavender-500);
    }

    & svg{
        height: 16rem;
        width: auto;
    }
}

/* Contact Card */
.contact-card{
    width: var(--w-available);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: var(--br-medium);
    align-items: left;
    justify-content: left;
    background-image: url("../images/momentum-pattern-lavender-500-01.jpg");
    background-color: var(--lavender-500);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    & .inner-wrapper{
        padding: 2rem;
        display: flex;
        gap: .5rem;
        flex-direction: column;
    }

    & h2{
        font-size: 2rem;
        line-height: var(--lh-equal);
        font-weight: var(--bold);
        color: var(--gray-800);
    }

    & h5{
        font-size: 1rem;
        line-height: var(--lh-equal);
        font-weight: var(--bold);
        letter-spacing: var(--ls-wider);
        color: var(--lavender-900);
        text-transform: uppercase;
    }

    & a{
        font-size: 1.75rem;
        line-height: var(--lh-equal);
        font-weight: var(--medium);
        color: var(--lavender-900);
        text-decoration: none;
        margin-top: 2rem;
    }

    & svg{
        width: 100%;
        height: auto;
        margin-top: 1rem;
    }

    & p{
        font-size: 1.75rem;
        line-height: var(--lh-slight);
        font-weight: var(--medium);
        color: var(--gray-800);
        margin-top: 2rem;
    }
}

/* Investors Line */
.investors-line{
    width: var(--w-full);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    background-image: url("../images/momentum-pattern-lavender-500-01.jpg");
    background-color: var(--lavender-500);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem;
    box-sizing: border-box;

    & h4{
        font-size: 1.25rem;
        line-height: var(--lh-equal);
        font-weight: var(--bold);
        color: var(--gray-700);
    }
}

/* FAQ */
.accordeon-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 16%;
    overflow: hidden;
    gap: 2rem;
}

.accordeon-container{

    & h2{
        font-size: 1.5rem;
        line-height: var(--lh-equal);
        font-weight: var(--bold);
        padding: 1rem 2rem;
        color: var(--lavender-900);
    }
}

.accordeon-container:first-child {
    margin: 0 auto;
}

.accordeon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--lavender-500);
    border-top-left-radius: var(--br-medium);
    border-top-right-radius: var(--br-medium);
    border-bottom-left-radius: var(--br-medium);
    border-bottom-right-radius: var(--br-medium);
    padding: 0 0 1rem 0;
    cursor: pointer;
    margin: 0;
    position: relative;
    z-index: 1;
}

.accordeon-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 !important;
    background: var(--gray-200);
    border-bottom-left-radius: var(--br-medium);
    border-bottom-right-radius: var(--br-medium);
    transform: translateY(-16px);
    transition: all 0.3s ease, padding 0.3s ease;

    ul{
        font-size: 1.25rem;
        line-height: var(--lh-slight);
        font-weight: var(--medium);
        padding: 0 2rem 1.5rem 2rem;
        color: var(--gray-700);
        list-style-position: inside;
        list-style-type: disc;
        margin-left: 1.5rem;

        & li{
            text-indent: -1.75rem;
        }
    }

    & p{
        font-size: 1.25rem;
        line-height: var(--lh-slight);
        font-weight: var(--medium);
        padding: 1.5rem 2rem;
        color: var(--gray-700);
    }
}

.accordeon-content div {
    margin: 1.5rem 0 1rem 0 !important;
}

.arrow {
    transform-origin: center;
    transition: transform 0.3s ease;
    margin-left: .5rem;
}

.accordeon-header.active .arrow {
    transform: rotate(45deg);
}

.accordeon-header.active + .accordeon-content {
    max-height: 200px;
    padding: 1rem;
}

/* Accorden Category */
.accordeon-category{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem auto;

    & h2{
        font-size: 3rem;
        line-height: var(--lh-equal);
        font-weight: var(--bold);
        color: var(--gray-900);
    }
}

/* Related Content */
.related-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 3rem 0;

    & h2{
        font-size: 3rem;
        line-height: var(--lh-equal);
        font-weight: var(--bold);
        color: var(--gray-900);
    }

    & .cards-wrapper{
        display: flex;
        flex-direction: row;
        gap: 1rem;
        width: var(--w-full);

        & .related-card{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 2rem;
            border-radius: var(--br-medium);
            background-image: url("../images/momentum-pattern-lavender-500-01.jpg");
            background-color: var(--lavender-500);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            box-sizing: border-box;
            width: var(--w-available);

            & a{
                text-decoration: none;
            }

            & .related-link{
                display: flex;
                flex-direction: row;
                gap: 1rem;
                align-items: center;

                & p{
                    color: var(--lavender-900);
                    font-weight: var(--bold);
                }
            }

            & .related-link:hover{
                cursor: pointer;
            }

            & h3{
                font-size: 1.75rem;
                line-height: var(--lh-equal);
                font-weight: var(--bold);
                color: var(--gray-900);
            }

            & p{
                font-size: 1.25rem;
                line-height: var(--lh-slightly);
                font-weight: var(--medium);
                color: var(--gray-700);
            }
        }
    }
}

/* Footnote */
.footnote{
    width: var(--w-full);
    box-sizing: border-box;
    padding: 2rem 6rem;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    font-size: 1rem;
    line-height: var(--lh-equal);
    font-weight: var(--medium);
    color: var(--gray-800);

    & span{
        color: var(--lavender-900);
        margin-right: .5rem;
        font-weight: var(--bold);
        font-size: 1.5rem;
    }
}