body {
    font-family: 'Neue Einstellung', sans-serif;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--black-primary);
    box-sizing: border-box;
}


/* GENERAL */

.overall-container {
    position: relative;
    max-width: 1920px;
    width: 100%;
    box-sizing: border-box;
}

.container-padding {
    padding: 0 120px;
    box-sizing: border-box;

}


.content-background {
    background: -webkit-linear-gradient(var(--gray-light2), #EBF0FF);

}

.background-decoration {
    width: 100%;
    height: 100%;
    justify-self: stretch;
    align-self: stretch;
    background-image: url('../assets/images/background_decoration.png');
    background-size: cover;
    background-position: center;
    
}


.lock-scroll {
    overflow-y: hidden;
}






/* FIXED HEADER */

.fixed-header {
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 2px 0px rgba(73,120,255,0.10) ;
    width: 100%;
    background-color: var(--gray-light2);
    position: fixed;
    max-width: 1920px;
    box-sizing: border-box;
    z-index: 10;
}

.fixed-header-logo > img {
    width: 120px;
}

.fixed-header-menu {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.fixed-header-menu li:nth-child(even) {
    margin: 0 24px;
}

.fixed-header-menu-mobile {  
    display: none;
}


.fixed-header-menu-mobile > img {
    width: 24px;
}





/* MAIN HEADER */


.main-header {
    padding-top: 160px;
    padding-bottom: 120px;
    display: grid;
    grid-template-columns: 50% 50%;
    box-sizing: border-box;
    background: -webkit-linear-gradient(var(--gray-light2), #EBF0FF);
}

.main-header-title {
    display: flex;
    flex-direction: column;
    align-self: center;
    box-sizing: border-box;
}

.main-header-title > .btn {
    margin: 24px 0px 40px 0px;
}

.main-header-title-decoration {
    width: 80px;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.main-header-image {
    justify-self: center;
    box-sizing: border-box;
}

.main-header-image > img {
    display: flex;
    width: 100%;
    width: fit-content;
    box-sizing: border-box;
    
}







/* MENU MOBILE */


.menu-mobile {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100%;
    padding: 40px 10% 40px 10%;
    box-sizing: border-box;
    background: linear-gradient(#162645, #141414);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-mobile-closed {
    display: none;
}

.menu-mobile-open {
    display: flex;
}


.menu-mobile-actions {
}


.menu-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-mobile-logo {
    width: 32px;
}




.menu-mobile-links {
    display: flex;
    flex-direction: column;
    margin: 40px 0;
}

.menu-mobile-links > a {
    margin: 24px 0;
    color: var(--gray-primary);
}

#menu-mobile-icon {
    width: 18px;
}







/* INOVATE SECTION */


.innovate-section {
    position: relative;
    box-sizing: border-box;
}

.innovate-section-divider {
    width: 100%;
    position: absolute;
    top: -1px;
}

.innovate-section-content {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 800px;
}

.innovate-section-content-text {
    padding-top: 160px;
    padding-bottom: 120px;
    background-image: -webkit-linear-gradient(-45deg, #152e74, #284598, var(--blue-primary), var(--green-primary), var(--green-primary));
    animation: gradient 8s ease-out infinite;
    background-size: 100% 400%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.innovate-section-content-text > * {
    color: var(--gray-light2);
}

.innovate-section-content-text > p {
    margin-top: 32px;
}

.innovate-section-content-image {
    width: 100%;
    justify-self: stretch;
    align-self: stretch;
    background-image: url('../assets/images/engineer_image.png');
    background-size: cover;
    background-position: center;
}




/* DOCUMENT SECTION */


.document-section-content {
    padding-top: 120px;
    padding-bottom: 80px;
    width: 100%;
    display: grid;
    grid-template-columns: 70% 30%;
    box-sizing: border-box;
}

.document-section-content-text {
    display: flex;
    flex-direction: column;
    align-self: center;
    box-sizing: border-box;
}

.document-section-content-text > .btn {
    margin: 24px 0px 40px 0px;
}

.document-section-content-text-decoration {
    width: 80px;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.document-section-content-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    box-sizing: border-box;
}

.document-section-content-image > img {
    display: flex;
    width: 80%;
    max-width: 600px;
    justify-self: center;
    align-self: center;
    box-sizing: border-box;
    
}






/* DATA-CAPTURE SECTION */


.data-capture-section-content {
    padding-top: 80px;
    padding-bottom: 160px;
    width: 100%;
    display: grid;
    grid-template-columns: 30% 70%;
    box-sizing: border-box;
}

.data-capture-section-content-text {
    display: flex;
    flex-direction: column;
    align-self: center;
    box-sizing: border-box;
}

.data-capture-section-content-text > .btn {
    margin: 24px 0px 40px 0px;
}

.data-capture-section-content-text-decoration {
    width: 80px;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.data-capture-section-content-image {
    display: flex;
    justify-self: center;
    box-sizing: border-box;
}

.data-capture-section-content-image > img {
    display: flex;
    width: 80%;
    max-width: 600px;
    justify-self: center;
    box-sizing: border-box;
    
}









/* CRISP ORGANIZES SECTION */


.crisp-organizes-section {
    padding-top: 100px;
    padding-bottom: 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.crisp-organizes-section-title {
    margin-bottom: 60px;
}

.crisp-organizes-section-content {
    display: grid;
    grid-template-columns: 40% 60%;
}

.crisp-organizes-section-image {
    box-sizing: border-box;
    width: 80%;
    justify-self: center;
}



/* TEST DRIVE SECTION */


.test-drive-section {
    padding-top: 100px;
    padding-bottom: 100px;
    display: grid;
    width: 100%;
}


.test-drive-section-title {
    text-align: center;
    display: flex;
    justify-content: center;
}

.test-drive-section-image {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}


.test-drive-section-image > img {
    width: 100%;
    max-width: 1200px;
    margin-top: 24px;
    margin-bottom: 40px;
}

.test-drive-section-image-mobile {
    display: none;
    width: 80%;
}


.test-drive-section-title > .gradient-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.test-drive-section-text {
    text-align: center;
    width: 80%;
    justify-self: center;
    padding-top: 24px;
}





/* INCUBATE, ACCELERATE AND REALIZE SECTION */



.incubate-section {
    padding-top: 80px;
    padding-bottom: 240px;
}

.incubate-section-card-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
}


.incubate-section-card {
    background-color: #f9fbff;
    border-radius: 12px;
    padding: 32px 32px 64px 32px;
}

.margin-right {
    margin-right: 8px;
}

.margin-middle {
    margin: 0 4px;
}

.margin-left {
    margin-left: 8px;
}

.incubate-section-card-title {
    padding-bottom: 24px;
}

.incubate-section-card-title > p {
    font-size: 1.0em;
    line-height: 1.4em;
    color: var(--black-light1);
    height: 3em;
}



.incubate-section-card-topics-list{
    display: flex;
    margin-bottom: 24px;
}


.incubate-section-card-topic {
    
   
}


.incubate-section-card-topic-image {
    border-radius: 50%;
    padding: 4px;
    width: 56px;
    height: 56px;
    border: 1px solid var(--gray-dark1);
    background-color: var(--gray-light1);
    display: flex;
    align-items: center;
    justify-content: center;
}


.incubate-section-card-topic-image > img {
    width: 48px;
}


.incubate-section-card-topic-text {
    margin-left: 12px;
}

.incubate-section-card-topic-text p {
    font-size: 0.9em;
    line-height: 1.3em;
    color: var(--black-light1);
    margin: 0;
    box-sizing: border-box;
}

.incubate-section-card-topic-text p > b {
    color: var(--black-primary);
    line-height: 1.8em;
}








/* WELCOME SECTION */


.welcome-section {
    padding-top: 220px;
    padding-bottom: 120px;
    background-image: -webkit-linear-gradient(-45deg, #284598, var(--blue-primary), var(--green-primary), var(--green-primary));
    animation: gradient 8s ease-out infinite;
    background-size: 100% 400%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.welcome-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.welcome-section-divider {
    position: absolute;
    width: 100%;
    top:-1px;
}


.welcome-section-image {
    width: 80%;
    max-width: 280px;
}


.welcome-section-title {
    margin-top: 40px;
}


.welcome-section-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.welcome-section-text p {
    text-align: center;
}


.welcome-section-text > button {
    margin-top: 16px;
    margin-bottom: 64px;
}






/* FOOTER SECTION */


.container-footer {
    padding-top: 80px;
    padding-bottom: 120px;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    background: linear-gradient(#162645, #141414);
    color: var(--gray-primary);
}

.container-footer  p {
    margin-top: 80px;
    font-size: 1.0em;
}


.footer-links {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

.footer-links  a {
    margin: 16px 0;
    width: fit-content;
    color: var(--gray-primary);
}







/* MODAL REQUEST DEMO */

.request-demo-blur {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    padding: 40px 5%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}




.request-demo-modal {
    background: linear-gradient(0deg, #EAEFFF 0%, #FFFFFF 100%);
    background-color: #EAEFFF;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 30% 70%;
    box-sizing: border-box;
    z-index: 0;
    max-width: 1080px;
}


.request-demo-header {
    border-radius: 8px 32px 32px 8px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 24px 40px 24px 32px;
    display: flex; 
    flex-direction: column;
    position: relative;
    z-index: -1;
    background-image: -webkit-linear-gradient(-45deg, #284598, var(--blue-primary), var(--green-primary), var(--green-primary));
    animation: gradient 8s ease-out infinite;
    background-size: 100% 400%;
    color: var(--gray-primary);
}


.request-demo-header-decoration {
    max-width: 80px;
    margin-top: 24px;
    opacity: 0.4;
}

.request-demo-header-title {
    z-index: 10;
}

.request-demo-header-title > h3 {
    margin-bottom: 8px;
}

.request-demo-header-title > p {
    font-size: 1.0em;
}

.request-demo-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.request-demo-footer {
    display: flex;
    flex-direction: row-reverse;
    padding: 16px 0px 24px 0px;
    background: rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    z-index: 10;
    backdrop-filter: blur(5px);
    border-bottom-right-radius: 8px;
}

.request-demo-footer > .btn-primary {
    margin-left: 16px;
    padding: 8px 24px;
    background-image: -webkit-linear-gradient(-45deg, var(--blue-primary), var(--green-primary));
    animation: gradient 4s ease-out infinite;
    background-size: 100% 400%;
    color: var(--gray-primary)
}

.request-demo-footer > button {
    color: var(--blue-primary)
}

.request-demo-header-background-image {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    opacity: 0.2;
    z-index: -2;
}

.request-demo-header-background-computer {
    position: absolute;
    bottom: 32px;
    right: 8px;
    width: 80%;
    opacity: 0.6;
    z-index: -1;
}

.request-demo-body-header {
    display: flex;
    flex-direction: row-reverse;
    padding: 32px;
    background: rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    border-top-right-radius: 8px;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.request-demo-header-icon {
    cursor: pointer;
}


.request-demo-form-background-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 50%;

    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}


.request-demo-blur-action {
    position: absolute;
    width: 100%;
    height: 100%;
}


.request-demo-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    padding: 32px 32px 0 32px;
}


.request-demo-form .text-field {
    width: 100%;
    margin: 16px 0;
    box-sizing: border-box;
}


.modal-closed {
    display: none;
}



































/* MEDIUM-LARGE */

@media only screen and (max-width: 1450px) {


    /* GENERAL */

    .container-padding {
        padding-left: 80px;
        padding-right: 80px;
    }

    
    /* MAIN HEADER */


    .main-header-image > img {
        width: 90%;
        justify-self: center;
        align-self: center;
    }




    /* INOVATE SECTION */


    .innovate-section {
        position: relative;
        box-sizing: border-box;
    }

    .innovate-section-divider {
        width: 100%;
        position: absolute;
        top: -1px;
    }

    .innovate-section-content {
        display: grid;
        grid-template-columns: 50% 50%;
        min-height: 400px;
    }

    .innovate-section-content-text {
        padding-top: 120px;
        padding-bottom: 60px;

        flex-direction: column;
        justify-content: center;
    }




    /* DOCUMENT SECTION */

    .document-section-content {
        grid-template-columns: 60% 40%;
    }





    /* CRISP ORGANIZES SECTION */


    .crisp-organizes-section-title {
        margin-bottom: 40px;
    }

    .crisp-organizes-section-content {
        display: grid;
        grid-template-columns: 30% 70%;
    }





    /* INCUBATE, ACCELERATE AND REALIZE SECTION */



    .incubate-section-card-topic-image {
        border-radius: 50%;
        padding: 4px;
        width: 40px;
        height: 40px;
        border: 1px solid var(--gray-dark1);
        background-color: var(--gray-light1);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    
    .incubate-section-card-topic-image > img {
        width: 32px;
    }

  




}



/* MEDIUM */

@media only screen and (max-width: 1050px) {


    /* GENERAL */

    .container-padding {
        padding-left: 60px;
        padding-right: 60px;
    }



    /* FIXED HEADER */



    .fixed-header-menu {
        display: none;
    }


    .fixed-header-menu-mobile {
        display: block;
    }

    
   /* MAIN HEADER */

   .main-header {
        grid-template-columns: 100%;
        padding-bottom: 60px;
        justify-content: center;
    }

    .main-header-title {
        order: 2;
        margin-top: 56px;
        justify-self: center;
    }

    .main-header-image  {
        display: flex;
        flex-direction: column;
        width: 100%;
        
    }

    .main-header-image > img {
        width: 100%;
        max-width: 450px;
        justify-self: center;

    }

    .main-header-title-decoration {
        display: none;
    }








    /* INOVATE SECTION */


    .innovate-section-content {
        display: grid;
        grid-template-columns: 100%;
        min-height: 200px;
    }

    .innovate-section-content-text {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .innovate-section-content-image {
        height: 500px;
    }






    /* DOCUMENT SECTION */

    .document-section-content {
        grid-template-columns: 50% 50%;
    }
    






    /* DATA CAPTURE */


    .data-capture-section-content {
        grid-template-columns: 50% 50%;
    }

    .data-capture-section-content-image > img {
        width: 80%;
        max-width: 300px;
        margin-right: 64px;
        box-sizing: border-box;
    }







    /* CRISP ORGANIZES SECTION */


    .crisp-organizes-section-title {
        margin-bottom: 10px;
    }

    .crisp-organizes-section-content {
        display: grid;
        grid-template-columns: 100%;
    }

    .crisp-organizes-section-content-text {
        padding-bottom: 24px;
    }





    /* INCUBATE, ACCELERATE AND REALIZE SECTION */



    .incubate-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .incubate-section-card-grid {
        grid-template-columns: 50% 50%;
    }


    .margin-right {
        margin-right: 12px;
    }

    .margin-middle {
        margin: 0 0px;
    }

    .margin-left {
        margin-left: 0px;
        margin-top: 12px;
        margin-right: 12px;
    }





}


/* MOBILE LARGE */

@media only screen and (max-width: 800px) {


    /* GENERAL */

    .container-padding {
        padding-left: 40px;
        padding-right: 40px;
    }


    /* DOCUMENT SECTION */


    .document-section-content {
        grid-template-columns: 100%;
        padding-top: 80px;
        padding-bottom: 40px;
    }


    .document-section-content-text {
        order: 2;
    }


    .document-section-content-image {
        order: 1;
        /* display: none; */
    }


    .document-section-content-image > img {
        max-width: 400px;
        margin-bottom: 64px;
    }


    /* INOVATE SECTION */



    .innovate-section-content-image {
        height: 300px;
    }






    /* DATA CAPTURE */


    .data-capture-section-content {
        grid-template-columns: 100%;
        padding-top: 80px;
        padding-bottom: 40px;
    }


    .data-capture-section-content-text {
        order: 2;
    }


    .data-capture-section-content-image {
        order: 1;
        display: flex;
        justify-content: center;
        /* display: none; */
    }


    .data-capture-section-content-image > img {
        max-width: 400px;
        width: 80%;
        margin-bottom: 64px;
        margin-right: 0;
        justify-self: center;
    }







    /* CRISP ORGANIZES SECTION */


    .crisp-organizes-section-title {
        margin-bottom: 10px;
    }

    .crisp-organizes-section-content {
        display: grid;
        grid-template-columns: 100%;
    }

    .crisp-organizes-section-content-text {
        padding-bottom: 24px;
        order: 2;
    }

    .crisp-organizes-section-image {
        margin-top: 24px;
        margin-bottom: 24px;
        width: 100%;
        order: 1;
    }




    /* TEST DRIVE SECTION */


    .test-drive-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }




    /* INCUBATE, ACCELERATE AND REALIZE SECTION */



    .incubate-section {
        padding-top: 80px;
        padding-bottom: 160px;
    }

    .incubate-section-card-grid {
        grid-template-columns: 100%;
    }


    .margin-right {
        margin-right: 0px;
        margin-bottom: 24px;
    }

    .margin-middle {
        margin: 0 0px;
    }

    .margin-left {
        margin-left: 0px;
        margin-top: 24px;
        margin-right: 0px;
    }



    .incubate-section-card-topic-image {
        border-radius: 50%;
        padding: 4px;
        width: 40px;
        height: 40px;
        border: 1px solid var(--gray-dark1);
        background-color: var(--gray-light1);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    
    .incubate-section-card-topic-image > img {
        width: 32px;
    }
    

    


    /* REQUEST DEMO MODAL */


    .request-demo-modal {
        grid-template-columns: 100%;
    }


    .request-demo-header {
        border-radius: 8px 8px 32px 32px;
    }

    .request-demo-header-decoration {
        display: none;
    }


    .request-demo-blur {
        background-color: transparent;
        padding: 0%;
        
    }
    
    
    .request-demo-modal {
        border-radius: 0px;
        display: flex;
        flex-direction: column;
        height: 100vh;
        overflow-y: scroll;
    }
    
    
    .request-demo-header {
        border-radius: 0px 0px 32px 32px;
        padding: 24px 24px 24px 24px;
        height: unset;
        box-sizing: border-box;
        width: 100%;
    }

    .request-demo-header > * {
        text-align: center;
    }

    .request-demo-header-title {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .request-demo-footer {
        display: flex;
        flex-direction: column;
    }

    .request-demo-footer > .btn-primary {
        margin-left: 0px;
        margin-bottom: 16px;
    }

    .request-demo-footer > .btn-border {
        width: 100%;
    }
    
    .request-demo-header-background-image {
        display: none;
    }
    
    .request-demo-header-background-computer {
        display: none;
    }

    .scale-in-center-request-demo {
        -webkit-animation: unset;
                animation: unset;
    }


    .process-section {
        grid-template-columns: auto auto; 
        
    }


    .process-step-card-details {
        max-width: 100%;
    }
    






}



/* MOBILE */

@media only screen and (max-width: 500px) {


    /* GENERAL */


    .container-padding {
        padding-left: 16px;
        padding-right: 16px;
    }



    /* FIXED HEADER */

    .fixed-header {
        padding-top: 24px;
        padding-bottom: 24px;
    }



    .fixed-header-menu {
        display: none;
    }


    .fixed-header-menu-mobile {
        display: block;
    }



    /* MAIN HEADER */

    .main-header {
        grid-template-columns: 100%;
        padding-bottom: 60px;
        padding-top: 120px;
    }
    
    .main-header-title {
        order: 2;
        margin-top: 56px;
    }

    .main-header-image  {
        display: flex;
        flex-direction: column;
        
    }

    .main-header-image > img {
        width: 80%;
        max-width: 280px;
    }

    .main-header-title-decoration {
        display: none;
    }


    /* INOVATE SECTION */


    .innovate-section-content {
        display: grid;
        grid-template-columns: 100%;
        min-height: 200px;
    }

    .innovate-section-content-text {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .innovate-section-content-image {
        height: 300px;
    }




    

    /* TEST DRIVE SECTION */


    .test-drive-section-image-mobile {
        display: block;
    }

    .test-drive-section-image-web {
        display: none;
    }


}




/* MOBILE */

@media only screen and (max-width: 500px) {


    /* GENERAL */


    .container-padding {
        padding-left: 16px;
        padding-right: 16px;
    }



    /* FIXED HEADER */

    .fixed-header {
        padding-top: 24px;
        padding-bottom: 24px;
    }



    .fixed-header-menu {
        display: none;
    }


    .fixed-header-menu-mobile {
        display: block;
    }



    /* MAIN HEADER */

    .main-header {
        grid-template-columns: 100%;
        padding-bottom: 60px;
    }
    
    .main-header-title {
        order: 2;
        margin-top: 56px;
    }

    .main-header-image  {
        display: flex;
        flex-direction: column;
        
    }

    .main-header-image > img {
        width: 90%;
    }

    .main-header-title-decoration {
        display: none;
    }


    /* INOVATE SECTION */


    .innovate-section-content {
        display: grid;
        grid-template-columns: 100%;
        min-height: 200px;
    }

    .innovate-section-content-text {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .innovate-section-content-image {
        height: 300px;
    }




    

    /* TEST DRIVE SECTION */


    .test-drive-section-image-mobile {
        display: block;
    }

    .test-drive-section-image-web {
        display: none;
    }


}