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

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

.mm a{
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.mm a:hover{
    color: #00b0f0;
}

.mm h1{
    font-size: 2.0em;
    font-weight: bold;
    margin: 0;
    color: #00b0f0;
}

.mm h2{
    font-size: 1.25em;
    font-weight: normal !important;
    margin: 0;
    color: #00b0f0;
}

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

.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: 20px;
    list-style: disc;
}

.mm .pad{
    padding: 20px;
}

.mm .main{
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.mm .intro{
    margin-bottom: 30px;
}

.mm .intro h1:nth-child(1){
    float: left;
    text-align: start;
}

.mm .intro h1:nth-child(2){
    float: right;
    text-align: end;
}

.mm .description{
    margin-bottom: 10px;
    font-size: 1.5em;
}

.mm .description h1{
    font-size: 1.5em;
    color: black;
    margin: 0 5px;
}

.mm .description *{
    display: inline-block;
}

.mm .description div:nth-child(1){
    text-align: start;
    float: left;
    margin-bottom: 5px;
}

.mm .description div:nth-child(2){
    text-align: end;
    float: right;
    max-width: 60%;
}

.mm .apply{
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 10px;
}

.mm .apply strong{
    color: black;
}

.mm .apply h1{
    font-size: 2.5em;
}

.mm .footer_{
    margin: 10px 0 0 0;
}

.mm .footer_ > p{
    font-size: 0.75em;
}

.mm .info{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: nowrap;
    gap: 20px;
}

.mm .blue{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: nowrap;
    background-color: #00b0f0;
    gap: 20px;
    padding: 10px;
    padding-right: 30px;
    text-align: end;
    flex: 1
}

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

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

.mm .img-header{
    margin-bottom: 10px;
}

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

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

.mm .img-logo{
    max-width: 120px;
}

.mm .img-qr{
    max-height: 80px;
}

/* media */

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

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

    .mm .pad{
        padding: 10px;
    }

    .mm .info{
        gap: 5px;
    }

    .mm .img-qr{
        display: none;
    }

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

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

    .mm .pad{
        padding: 10px;
    }

    .mm .description div:nth-child(2) {
        text-align: start;
        float: left;
        max-width: 100%;
    }

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

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