/*Main.CSS*/
:root{
    --main-color: #00A24C;
    --sec-color: #ffffff;
    --text-color: #000000;
    --hover-inactive-color: #c2c2c2;
}

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

.mm *:empty{
  display: none;
}

.mm h1{
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 1.0em 0;
}

.mm h2{
    font-size: 1.25em;
    font-weight: bold;
    margin: 0 0 1.0em 0;
}

.mm h3{
    font-size: 1.25em;
    font-weight: bold;
    margin: 0 0 1.0em 0;
}

.mm p{
    display: block;
    margin-block-start: 0;
    margin-block-end: 1.0em;
    margin-inline-start: 0;
    margin-inline-end: 0; 
}

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

.mm ul li{
    position: relative;
    margin-top: 2px;
}

.mm .header{
  position: relative;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 80%);
}

.mm .header .img-responsive {
  position: relative;
  z-index: -1;
}

.mm .header .logo{
  position: absolute;
  display: block;
  right: 20px;
  bottom: 20px;
  width: 25%;
  z-index: 1;
}

.mm .title{
  padding: 30px 80px;
  text-align: center;
  background-color: var(--main-color);
  color: white;
  font-size: 1.5em;
}

.mm .title *{
  margin: 0;
}

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

.mm .contact{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.mm .footer_{
  background-color: var(--main-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
}

.mm .footer-left{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 10px;
}

.mm .bbutton{
    text-decoration: none;
    background-color: var(--main-color);
    color: white;
    border: 2px solid;
    border-color: white;
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    transition: background-color 0.5s, color 0.5s;
    padding: 10px 20px;
    margin: 20px;
    font-weight: bold;
    font-size: 1.25em;
}

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

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

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

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

.mm .hover-border-wrapper:hover h3{
    width: 100%;
    border-color: var(--main-color);
}

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


/* media */

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

  .mm .title{
    padding: 10px;
  }

  .mm .main{
    padding: 10px;
  }

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


@media screen and (max-width: 768px){
  .logodiv.jobboerse #jobboerselogo{
    display: none;
  }

  body{
    padding: 5px;
  }
	
	.col-md-10{
		padding: 0;
	}
}

@media screen and (max-width: 425px){
  .mm h1, .mm h2, .mm h3{
    font-size: 1.1em;
    margin-bottom: 0.5em;
  }
}