:root{
    --main-color: #2E74B5;
    --sec-color: #ffffff;
    --text-color: #000000;
    --hover-inactive-color: #c2c2c2;
    /*filter to recolor black svg files https://codepen.io/sosuke/pen/Pjoqqp
      has to be updated manually if --main-color changes*/
    --svg-recolor-filter: invert(20%) sepia(29%) saturate(4265%) hue-rotate(326deg) brightness(108%) contrast(118%);
}

.mm{
    margin: auto;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    font-family: roboto;
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    color: black;
}

.mm strong{
    font-weight: bold;
    color: var(--main-color);
}

.mm h1{
    font-size: 1.75em;
    font-weight: bold;
    margin: 0;
    color: var(--main-color);
}

.mm h2{
    font-size: 1.2em;
    margin: 0;
    margin-top: 0.5em;
    color: var(--main-color);
    font-weight: initial;
}

.mm h3{
    font-size: 1.0em;
    font-weight: bold;
    margin: 0;
    margin-top: 1.25em 
    margin-bottom: 0.5em;
    color: var(--main-color);
}

.mm p{
    display: block;
    margin-block-start: 0;
    margin-block-end: 10px;
    margin-inline-start: 0;
    margin-inline-end: 0; 
}

.mm ul{
    display: block;
    margin-block-start: 0.25em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 20px;
}

.mm ul li::marker{
    color: var(--main-color);
}

.mm .main{
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
}

.mm .right{
    width: 75%;
    padding: 0 20px 0 0;
}

.mm .left{
    width: 25%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f2f2f2;
    color: rgb(121, 121, 121)
}

.mm .left h1{
    margin-top: 10px;
    font-size: 1.5em;
}

.mm .left strong{
    color: rgb(90, 90, 90)
}

.mm .left-c0{
    display: flex;
    flex-direction: column;
    gap: inherit;
}

.mm .left-c1{
    display: flex;
    flex-direction: column;
    gap: inherit;
}

.mm .qr-code{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 20px;
}

.mm .footer_{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px 0 0 0;
    align-items: flex-start;
    flex-wrap: nowrap;
    align-content: flex-start;
    padding: 20px 20px 10px 20px;
    gap: 20px;
    background: #f2f2f2;
}

.mm .img-footer{
    max-width: 100px;
}

.mm .bbutton{
    text-decoration: none;
    background-color: var(--main-color);
    color: white;
    border: 1px solid;
    border-color: var(--main-color);
    border-radius: 5px;
    text-align: center;
    vertical-align: middle;
    transition: background-color 0.5s, color 0.5s;
    padding: 10px 10px;
}

.mm .bbutton:hover{
    background-color: white;
    color: var(--main-color);
}

.mm .img-responsive{
    width: 100%;
}

.mm .img-keep-aspect{
    display: block;
}


/* media */

@media only screen and (max-width: 991px){
    .hidden-md-down {
        display: none !important;
    }

    .mm h1{
        font-size: 1.25em;
    }
}

@media only screen and (max-width: 768px){
    .mm{
        font-size: 12px;
    }

    .mm .main{
        flex-direction: column;
    }

    .mm .right{
        width: auto;
        padding: 0 20px;
    }

    .mm .left{
        width: auto;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .mm .left-c0{
        width: 50%;
        gap: 10px;
    }

    .mm .left-c1{
        width: 45%;
    }

    .logodiv.jobboerse #jobboerselogo{
        display: none;
    }
    
    body{
        padding: 20px;
    }
	
	.col-md-10{
		padding: 0;
	}
}

@media only screen and (max-width: 425px){
    .mm .left{
        width: auto;
        flex-direction: column;
    }

    .mm .left-c0{
        width: 100%;
    }

    .mm .left-c1{
        width: 100%;
    }

    .mm .footer_{
        flex-direction: column;
    }
}