#alivebyalice {
  width: 100%;
  height: 110px;
  margin-top: 30px;
  margin-bottom: 20px;
  /* background-color : blue; */
}

.intro_container {
  width: 92%;
  box-sizing: border-box;
  padding-left: 31px;
  padding-right: 31px;
  margin: auto;
  /* height : 300px; */
  margin-top: 10px;
  display: table;
  table-layout: fixed;
}
.intro_img {
  display: table-cell;
  width: 24%;
  height: 400px;
  /* background-color : blue; */
  vertical-align: middle;
  overflow: hidden;
}
.intro_texte {
  display: table-cell;
  box-sizing: border-box;
  float: left;
  /* width : 76%; */
  height: 100%;
  padding-left: 50px;
  text-align: justify;
}

.rubrique_container {
  width: 100%;
  height: 265px;
  /* background-color : yellow; */
  margin-top: 40px;
}
.rubrique_element {
  float: left;
  height: 100%;
  width: 300px;
  margin-left: 31px;
  box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.15s ease;
  -moz-transition: -moz-transform 0.15s ease;
  -o-transition: -o-transform 0.15s ease;
  -ms-transition: -ms-transform 0.15s ease;
  transition: transform 0.15s ease;
}
.rubrique_element:hover {
  cursor: pointer;
  /* text-decoration : underline; */
  /* box-shadow: -1px 2px 5px 1px rgba(0, 0, 0, 0.2); */
  /* border : 1px solid rgb(200,200,200); */
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -o-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.rubrique_img {
  width: 100%;
  height: 225px;
  border-radius: 0px;
  overflow: hidden;
}
.rubrique_texte {
  width: 100%;
  height: 40px;
}

.partenaire_container {
  width: 100%;
  height: 100px;
  margin-top: 20px;
  position: relative;
  margin-bottom: 0px;
}
.partenaire_logo {
  float: left;
}
.joinme_container {
  position: absolute;
  bottom: 15px;
  right: 31px;
  width: 140px;
  -webkit-transition: -webkit-transform 0.05s ease;
  -moz-transition: -moz-transform 0.05s ease;
  -o-transition: -o-transform 0.05s ease;
  -ms-transition: -ms-transform 0.05s ease;
  transition: transform 0.05s ease;
}
.joinme_container:hover {
  cursor: pointer;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
