@charset "utf-8";
/* CSS Document */

/*	--------------------------------------------------------------------------------------------------------  VARIABLES  */

:root{
    /*	----------------------------------------------------------  SIZES  */
    --full-width: 100%;
    --inner-width: 1360px;

    /*	---------------------------------------------------------  COLORS  */
    --bg-color-test: rgba(255,0,0,0.1);

    /*	----------------------------------------------------------  FONTS  */
    --pixelfont: 'uni', 'Courier New', Courier, monospace;

    --thin: 		100;
    --extralight: 	200;
    --light: 		300;
    --regular: 		400;
    --medium: 		500;
    --semibold: 	600;
    --bold: 		700;
    --black: 		800;
    --extrablack: 	900;
}

/*	-----------------------------------------------------------------------------------------------------------  BASICS  */

* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;

    padding:0;
    margin:0;

    font-family: var(--pixelfont), sans-serif;
    font-style: normal;
    font-size: 93.75%;
    color: rgba(0,0,0,1);
}

html{
    /*	force scrollbars  */
    scroll-behavior: smooth;
}

body{
    overflow: hidden;
}

/*	---------------------------------------------------------------------------------------------------  GENERIC RESETS  */

h1, h2, h3, h4, h5, h6, p, td, ul, li, figure, button {
    margin:0;
    padding:0;
    font-weight:normal;
    border:0;
    outline:0;
    background-color:transparent;
}


/*	----------------------------------------------------------------------------------------------------------  FLEXBOX  */
.flx{
    display: flex;
}

.flxR{
    display:flex;
    flex-flow:row;
    flex-wrap:nowrap;
}

.flxC{
    display:flex;
    flex-flow:column;
    flex-wrap:nowrap;
}

.flxJCA	{ justify-content:space-around; }
.flxJCB	{ justify-content:space-between; }
.flxJCC	{ justify-content:center; }
.flxJCE	{ justify-content:flex-end; }
.flxJCS	{ justify-content:flex-start; }

.flxAIC	{ align-items:center; }
.flxAIE	{ align-items:flex-end; }
.flxAIS	{ align-items:flex-start; }
.flxWrp	{ flex-wrap:wrap; }


/*	-------------------------------------------------------------------------------------------------------------  GRID  */

.grd{
    display: grid;
}



/*	------------------------------------------------------------------------------------------------------------  SIZES  */

.fllW{
    width:100%;
    height:auto;
}
.fllH{
    height:100%;
    width:auto;
}
.fllWH{
    width:100%;
    height:100%;
}

.innerWidth{
    width:100%;
    max-width: var(--inner-width);
    margin:0 auto;
}


/*	-------------------------------------------------------------------------------  COMMON CLASSES  */

h1{
}

h2{

}

h3{

}

p,
ol,
ul{

}



/*	---------------------------------------------------------------------------------------  HEADER  */
.tstbd_hdrWrp{
    width: var(--full-width);

    background-color: var(--bg-color-test);
}
.tstbd_hdr{


    background-color: var(--bg-color-test);
}





/*	----------------------------------------------------------------------------------  THE FIXATIV  */
.fixativ{

}




/*	-----------------------------------------------------------------------------------------  MAIN  */
.tstbd_mainWrp{
    width: 100%;
    max-width: var(--full-width);
    height: 100vh;

    position: relative;

    background: none;

    @media screen and (min-width: 999px) {
        background-color: white;
        background-image: url('../../assets/media/images/testbild_background_100x100_opt.svg');
        background-repeat: repeat;
        background-position: center center;
        background-size: 150px 150px;
    }
}
    .tstbd_mainCircle{

        display: none;

        width: 1025px;
        aspect-ratio: 1 / 1;

        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 1;
        transform: translate(-50%, -50%);

        @media screen and (min-width: 999px){
            display: block;
        }
    }

    .tstbd_main{

        width: 100%;
        height: 100dvh;

        position: fixed;
        left: 0;
        top: 0;
        z-index: 10;

        @media screen and (min-width: 999px){
            width: 898px;
            height: 748px;

            position: relative;
            z-index: 2;

            background-color: white;
        }
    }

        .tstbd_row{
            width: 100%;
        }

        /*  ---------------------------------------------------------------------------------------  eight color blocks  */

            .tstbd_theColorRow{

                height: 100%;

                display: flex;
                flex-flow: column-reverse nowrap;

                .tstbd_colorBlock{
                    width: 100%;

                    flex-grow: 1;

                    &.white {   background-color: rgba(255,255,255,1); }
                    &.yellow{   background-color: rgba(255,255,0,1); }
                    &.cyan{     background-color: rgba(0,255,255,1); }
                    &.green{    background-color: rgba(0,220,0,1); }
                    &.magenta{  background-color: rgba(255,0,255,1); }
                    &.red{      background-color: rgba(255,0,0,1); }
                    &.blue{     background-color: rgba(0,0,220,1); }
                    &.black{    background-color: rgba(0,0,0,1); }
                }

                @media screen and (min-width: 999px){
                    flex-flow: row nowrap;
                    height: 224px;

                    .tstbd_colorBlock {
                        width: calc(100% / 8);

                        &.black{
                            background-image: url('../../assets/media/images/testbild_circle_part_300x400_opt.svg');
                            background-repeat: no-repeat;
                            background-size: contain;
                            background-position: top left;
                        }
                    }
                }
            }

        /*  -----------------------------------------------------------------------------------------  five grey blocks  */
            .tstbd_theGreyscaleRow{

                display: none;

                height: 150px;

                .tstbd_colorBlock{
                    width: calc( 100% / 5 );

                    &.black{ background-color: rgba(0,0,0,1); }
                    &.grey1{ background-color: rgba(51,51,51,1); }
                    &.grey2{ background-color: rgba(102,102,102,1); }
                    &.grey3{ background-color: rgba(153,153,153,1); }
                    &.grey4{ background-color: rgba(204,204,204,1); }
                }

                @media screen and (min-width: 999px){
                    display: flex;
                }
            }

        /*  ----------------------------------------------------------------------------------------------  title block   */
            .tstbd_theTitleRow{

                width: 50px;
                height: 100dvh;

                position: fixed;
                left: 0;
                top: 0;

                background-color: rgba(66,66,66,1);

                h1{
                    width: 100%;
                    height: 75px;
                    padding: 0 10px 8px;

                    overflow: unset;

                    font-size: 1.5rem;
                    letter-spacing: 0.15rem;
                    color: white;
                    white-space: nowrap;
                    text-transform: uppercase;

                    transform: rotate(-90deg);

                    @media screen and (min-width:666px){
                        padding: 0 25px 8px;
                    }

                    @media screen and (min-width: 999px){
                        width: fit-content;

                        overflow: hidden;

                        font-size: 2rem;
                        text-align: center;

                        background-color: black;

                        transform: unset;
                    }
                }

                .tstbd_icon{
                    width: 80%;

                    position: absolute;
                    left: 50%;
                    top: 0;

                    transform: translate(-50%, 0);

                    @media screen and (min-width: 999px){
                        display: none;
                    }
                }

                @media screen and (min-width: 666px){
                    width: 75px;
                }

                @media screen and (min-width: 999px){
                    width: 100%;
                    height: 75px;

                    position: relative;
                    left: unset;
                    top: unset;

                    align-items: center;

                    background-color: white;

                    transform: none;
                }
            }

        /*  ----------------------------------------------------------------------------  black and white raster blocks  */
            .tstbd_theWhiteStripesRow{

                display: none;

                height: 75px;

                .tstbd_colorBlock:nth-child(1){ width: 100%; background-color: rgba(240,240,240,1); }

                @media screen and (min-width: 999px){
                    display: flex;
                }

            }

        /*  ----------------------------------------------------------------------------------------  empty white block  */
            .tstbd_theVoidRow{

                display: none;

                height: 75px;

                .tstbd_colorBlock:nth-child(1){ width: 100%; }

                @media screen and (min-width: 999px){
                    display: flex;
                }

            }

        /*  ----------------------------------------------------------------------------------------  last double block  */
            .tstbd_theGradientRow{

                display: none;

                height: 150px;

                .tstbd_gradientBlock{
                    width: calc( 100% / 6 * 4 );

                    position: relative;

                    .tstbd_colorBlock:nth-child(1){ width: 100%; background: linear-gradient( 90deg, rgba(255, 0, 102, 1) 25%, rgba(0, 0, 0, 1) 100%); }
                    .tstbd_colorBlock:nth-child(2){ width: 100%; background: linear-gradient( 90deg, rgba(102, 0, 255, 1) 25%, rgba(0, 0, 0, 1) 100%); }

                    .tstbd_circlePart{
                        height: 100%;
                        aspect-ratio: 4 / 5;

                        position: absolute;
                        left: 0;
                        top: 0;

                        background-image: url('../media/images/testbild_circle_part_bottom_left_320x400_opt.svg');
                        background-repeat: no-repeat;
                        background-position: top right;

                    }
                }

                .tstbd_colorBlock:nth-child(2){
                    width: calc( 100% / 6 * 2 );

                    background-color: rgba(128,128,128,1);
                    background-image: url('../media/images/testbild_circle_part_bottom_right_320x400_opt.svg');
                    background-repeat: no-repeat;
                    background-position: top right;

                }

                @media screen and (min-width: 999px){
                    display: flex;
                }

            }

                .tstbd_colorBlock{
                    height: 100%;
                    overflow: hidden;
                }

                a.tstbd_colorBlock{
                    display: block;
                    z-index: unset;
                }
                /*
                    a.tstbd_colorBlock:hover{
                        z-index: 1000;
                        outline: 20px solid currentColor;
                    }
                */



            .tstbd_theArrows{

                display: none;

                height: calc(50% + 2px);
                aspect-ratio: 3 / 50;

                position: absolute;
                left: 50%;
                top: 30%;
                z-index: 10;

                background-image: url('../media/images/testbild_arrows_30x500_opt.svg');
                background-repeat: no-repeat;
                background-position: center center;
                background-size: contain;
                transform: translate(-50%, -2px);

                @media screen and (min-width: 999px){
                    display: block;
                }
            }





/*	---------------------------------------------------------------------------------------  FOOTER  */
.tstbd_ftrWrp{
    width: 100%;
    max-width: var(--full-width);
    min-height:30px;

    position:fixed;
    bottom:0;
    left:0;
    z-index:1200;

    background-color: var(--bg-color-test);
}
.tstbd_ftr{
    width: 100%;
    max-width: var(--inner-width);

    background-color: var(--bg-color-test);
}

