html {
    height: 100%;
}

body {

    height: 100%;
    margin: 0px;
}

@font-face {
    font-family: 'Aileron-SemiBold';
    src: url("Aileron-SemiBold.otf") format("opentype");;
}

.vertical-center {
    min-height: 100%;  /* Fallback for vh unit */
    min-height: 100vh; /* You might also want to use
                        'height' property instead.

                        Note that for percentage values of
                        'height' or 'min-height' properties,
                        the 'height' of the parent element
                        should be specified explicitly.

                        In this case the parent of '.vertical-center'
                        is the <body> element */

    /* Make it a flex container */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    /* Align the bootstrap's container vertically */
    -webkit-box-align : center;
    -webkit-align-items : center;
    -moz-box-align : center;
    -ms-flex-align : center;
    align-items : center;

    /* In legacy web browsers such as Firefox 9
       we need to specify the width of the flex container */
    width: 100%;

    /* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
       hence the bootstrap's container won't be aligned to the center anymore.

       Therefore, we should use the following declarations to get it centered again */
    -webkit-box-pack : center;
    -moz-box-pack : center;
    -ms-flex-pack : center;
    -webkit-justify-content : center;
    justify-content : center;
}

.bg {
    background-image: url('bosch.jpg');
    background-repeat: no-repeat;
    background-attachment: local;
    background-position-x: 50%;
    background-position-y: 50%;
}

#box {
    background-image: url('bosch.jpg');
    background-repeat: no-repeat;
    background-attachment: local;
    background-position-x: 50%;
    background-position-y: 50%;
    width: 100%;
    height: 95%;
    position: relative;
}


#box2 {
    width: 100%;
    height: 100%;
    background-color: #100909;

}

#inside{
    position: absolute;
    top: 50%;
    margin:auto;
    width: 100%;

}

#centeredbox {
    margin:auto;
    width:85%
    /*put media q?*/
}
/*@media screen and (max-width: 480px){*/
    /*#inside2 {*/
        /*margin: auto;*/
        /*width: 85%*/
    /*}*/
/*}*/

/*@media screen and (min-width: 480px) {*/
    /*#inside2 {*/
        /*margin: auto;*/
        /*width: 50%*/
    /*}*/
/*}*/

.container{
    height: 16em;
}

.inner{
    height: 7em;
    width: 100%;
}

.inner-bottom{
    margin-top: 2em;
    background-color: white;

}

.left{
    float:left;
    width: 75%;
    height:100%;

}


.left-inner{
    background-color: black;
    height:100%;
    margin-right:2em;
    opacity: 0.86;
    filter: alpha(opacity=68); /* For IE8 and earlier */

}
.left-inner span {
    font-family: Aileron-SemiBold;
    line-height: 7rem;
    font-size: 2.5em;
    margin: 0;
    color:white;
    align-items: center;
    height: 100%;
    padding-left: 1em;
    opacity: 1;
    filter: alpha(opacity=100); /* For IE8 and earlier */

}

.text {
    font-family: Aileron-SemiBold;
    line-height: 7rem;
    font-size: 2.5em;
    margin: 0;
    color:black;
    display: flex;
    align-items: center;
    height: 100%;
    display: inline-block;
}

.lefttext{
    padding-left: 1em;
}

.kelma{
    color: #db1b1b;
}

.bigbutton{
    padding: 0;
    border: 0;
}

.right-inner span{
    font-family: Aileron-SemiBold;
    font-size: 2em;
    margin: 0;
    color:white;
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    height: 100%;
    /*padding-left: 1em;*/
    opacity: 1;
    filter: alpha(opacity=100); /* For IE8 and earlier */
    /*margin-top: 0.25em;*/
    /*float:left;*/
    margin-left:auto;
    margin-right: auto;
    position: relative;
    /*padding-top: 0.25em;*/
    line-height: 7rem;
}

.left-abs{
    position: absolute;
    width: 100%;
}
.right{
    float:right;
    width: 25%;
    /*background-color: #db1b1b;*/
    height:100%;


}

.right-inner{
    /*border-bottom: 1em solid #db1b1b;*/
    background-color: #db1b1b;
    height:100%;
    border-bottom: 0.5em solid #901313;
    box-sizing: border-box;
    ;
}

.right-inner-inner{
    position: relative;
    padding-bottom: 1em;

}

.inner-container{
    position: relative;
}

@media screen  and (min-width: 0px)  {
    .container {
        width:75%;
    }

}


@media screen and (min-width: 1280px) {
    .container {
        width:50%;
    }
}


.lower
{
    background-color: #09132e;
    height: 100%;
}

.content{
    background-color: white ;
    height:25%;
}