
.splash
{
    display: flex;
    min-height: 90vh;
    height: 350px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.splash .image
{
    /* background-color: var(--purple); */
    min-width: 100px;
    min-height: 100px;
    flex-grow: 1;
    height: 100%;

    background-image: url("./images/splash.png");
    background-repeat: no-repeat;
    background-position: right 0px top 0px;
    background-size: contain;
}

.splash .textbox
{
    max-width: 450px;
}

.splash .textbox .button
{
    margin-top: 30px;
    display: inline-block;
}

.splash .textbox H1
{
    margin: 0px;
    font-family: helvetica_neue_medium;
    font-size: 52px;
    line-height: 140%;
    color: #333;
}

.splash .textbox H2
{
    margin: 0px;
    font-family: ubuntu_roman;
    font-size: 24px;
    line-height: 200%;
    color: #677788;
}

.applications_block
{
    margin-top: 100px;
}

.applications_block .row .box
{
    border-radius: 4px;
    background-color: var(--gray);
    min-width: 100px;
    min-height: 100px;
    color: var(--white);
    padding: 20px;
    width: 45%;
    margin-bottom: 40px;
    line-height: 142%;

    display: flex;
    flex-direction: column;
}

.applications_block .row .box .h
{
    font-family: ubuntu_medium;
    font-size: 22px;
}

.applications_block .row .box .t1
{
    margin-top: 20px;
    font-family: helvetica_neue_roman;
    font-size: 16px;
}

.applications_block .row
{
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.applications_block .eggs
{
    width: 300px;
    height: 200px;
    background-image: url("./images/eggs.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.applications_block .stretch
{
    margin-top: 20px;
    flex: 1;
}

.applications_block .read_more
{
    user-select: none;

    font-size: 80%;
    cursor: pointer;
}

.applications_block .read_more .angle
{
    margin-left: 2px;
    font-size: 80%;
}

.applications_block .sorting
{
    width: 400px;
    height: 250px;
    background-image: url("./images/sorting.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.applications_block .imaging
{
    width: 400px;
    height: 250px;
    background-image: url("./images/imaging.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.applications_block .cell3d
{
    width: 400px;
    height: 250px;
    background-image: url("./images/3dcell.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.applications_block .row .box:nth-child(1) { background-color: var(--blue); }
.applications_block .row .box:nth-child(2) { background-color: var(--navy); }
.applications_block .row .box:nth-child(3) { background-color: var(--purple); }
.applications_block .row .box:nth-child(4) { background-color: var(--pink); }

