@charset "UTF-8";
/* CSS Document */

body {
  margin: 0px;
  padding: 0px;
  color: #000;
  font-family: "Open Sans", "sustem-ui", sans-serif, arial;
  font-size: 14px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-size: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.bolder {
  font-weight: bolder;
}
#mainContent {
  background-color: #f8f8f8;
  display: flex;
  width: 100vw;
  max-width: 1000px;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}
#header {
  background-image: url(../gfx/AOC_logotype_black_transparent.png);
  background-position: 20px 20px;
  background-repeat: no-repeat;
  background-size: 165px auto;
  height: 100px;
  width: 100%;
}
#mainBody {
  min-height: calc(100vh - 400px);
  padding-top: 50px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: justify;
}
.mainBody_Title {
  font-size: 18px;
  padding-bottom: 20px;
}
#footer {
  min-height: 270px;
  padding: 15px;
  width: calc(100% - 30px);
  background-color: #dcdcdc;
  display: flex;
  justify-content: space-between;
}
.footerLogo {
  background-image: url(../gfx/AOC_logotype_black_transparent.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: auto 127px;
  height: 156px;
  filter: contrast(.06);
}
.menu {
  float: right;
  height: 98px;
  display: flex;
  /* border-bottom: 2px solid black; */
  padding: 3px;
  margin-right: 15px;
  align-content: flex-end;
  flex-direction: row;
  border-bottom: 1px solid #a5a5a5;
  width: 52px;
  justify-content: space-between;
}
.menuItem {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  line-height: 22px;
  /* border-bottom: 1px solid #a5a5a5; */
  margin-top: 4px;
  line-height: 15px;
  padding-top: 74px;
  /* border-bottom: 1px solid #a5a5a5; */
}
.menuItem:hover {
  /* line-height: 28px; */
  /* border-bottom: 1px solid black; */
  font-weight: bolder;
}
.infos {
  width: 280px;
  font-size: 12px;
  font-weight: 600;
  color: #787878;
}
.map {
  height: 275px;
  width: 370px;
}
@media only screen and (max-width: 600px) {
  #header {
    background-image: url(../gfx/AOC_logotype_black_transparent.png);
    background-position: 15px 20px;
    background-repeat: no-repeat;
    background-size: 160px auto;
    height: 100px;
    width: 100%;
  }
  .menu {
    font-size: 12px;
  }
  #footer {
    justify-content: space-between;
    flex-direction: column;
  }
  .infos {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .map {
    height: 275px;
    width: 100%;
  }
  .footerLogo {
    background-position: center;
  }
}