#pied h3 {
  color: #d7a037 !important;
  font-size: 18px;
  text-align: center;
  text-shadow: none !important;
}

.secteurs {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  justify-content: space-evenly
}

.secteurselements {
  position: relative;
}

.imgsecteurs {
  width: 75px;
  display: block;
  height: auto;
  opacity: 0.5;
  padding: 10px;
  margin: auto;
}

.overlaysecteurs {
  position: absolute;
  bottom: 0;
  left: 4px;
  right: 0;
  background-color: #e3c68e;
  border-radius: 5px;
  box-shadow: 0 0 8px #d7a037;
  overflow: hidden;
  width: 120px;
  height: 0;
  transition: .25s ease;
}

.secteurselements:hover .overlaysecteurs {
  height: 25%;
}

.textsecteurs {
  white-space: nowrap;
  color: #4066aa;
  font-size: 0.8rem;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.imgblog { 
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  padding: 10px;
  border: 10px double #d7a037;
}

.img_caption {
  font-size: .5em;
}

.article-info {
  font-size: .75em;
}