@font-face {
    font-family: roboto-light;
    src: url("../img/roboto-light.ttf");
}

@font-face {
    font-family: roboto-bold;
    src: url("../img/roboto-bold.ttf");
}


:root{
    --main-color: #85888d;
    --sec-color: #000000;
    --tert-color: #46d0fe;
    --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(57%) sepia(5%) saturate(310%) hue-rotate(179deg) brightness(94%) contrast(85%);
}

.mm{
    font-family: roboto-light;
    line-height: 1.2;
    margin: auto;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    color: var(--text-color)
}

.mm h1{
    font-family: roboto-bold;
    font-size: 2.0em;
    margin: 0;
    margin-bottom: 5px;
    color: var(--main-color);
}

.mm h2{
    font-family: roboto-bold;
    font-size: 2.0em;
    margin: 0;
    margin-bottom: 2px;
    color: var(--tert-color);
    line-height: 1.3;
}

.mm h3{
    font-family: roboto-bold;
    font-size: 1.0em;
    margin: 0;
    color: var(--main-color);
}

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

.mm strong{
    font-family: roboto-bold;
}

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

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

.mm .header-wrapper{
    position: relative;
    height: fit-content;
}

.mm .header{
    display: flex;
    position: absolute;
    width: 100%;
    height: 50%;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
}

.mm .img-logo-header-wrapper{
    height: 85%;
    width: 40%;
    padding: 20px;
    padding-right: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: nowrap;
}

.mm .title{
    display: flex;
    border-left: rgba(200, 200, 200, 0.75) 1px solid;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    padding: 20px;
    padding-left: 50px;
    padding-right: 60px;
    height: 100%;
    width: 60%;
}

.mm .pad{
    padding: 20px;
}

.mm .main{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
}

.mm .footer-wrapper{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    text-align: center;
}

.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: all 0.5s;
    padding: 10px 10px;
    width: 150px;
}

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

.mm .img-header{
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0.4);
}

.mm .img-logo-header{
    filter: opacity(0.6) brightness(1.5);
}

.mm .img-logo-footer{
    width: 170px;
    margin-top: 10px;
}

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


/* media */

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

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

    .mm .main{
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0;
    }

    .mm .img-logo-header-wrapper{
        padding: 10px 6%;
    }

    .mm .title{
        padding: 0 6%;
    }

    .mm .pad{
        padding: 10px;
    }

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

@media only screen and (max-width: 425px){
    .mm h1{
        font-size: 1.25em;
    }
    .mm h2{
        font-size: 1.1em;
    }

    .mm h3{
        font-size: 1.0em;
    }
}