/* 
    Created on : 09-Feb-2018, 15:44:12
    Author     : Lingjing Giraud <contact@lingjing.fr>
*/

#animateur .row {
        display: flex;
}
.img-container {
  position: relative;
  margin-bottom: 1.5rem;
}

#animateur .image {
 /* display: block;*/
  max-width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(93,137,160)  no-repeat center center / cover;
  border-radius: 1.2rem;
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: .5s ease;
}

.img-container:hover .overlay {
  width: 100%;
}

.text {
  color: white;
  font-family: 'Roboto Slab', serif;
  font-size: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  white-space: nowrap;
}

.text a {
    color: rgb(238, 228, 237);
    background-color: rgb(137, 107, 174);
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 8px;
}

figcaption {
    padding-top: 5px;
    box-shadow: 2px 2px 15px #888888;
    font-size: inherit !important;
}

form {
  margin-top: 2rem;
}

label[for="discipline"] {
  padding-right: 8px;
}
select.form-control-lg:not([size]):not([multiple]) {
  font-size: 1.6rem;
  height: calc(2.3125rem + 8px);
}