#content {
  padding: 50px 75px;
  min-height: 50vh;
  text-align: center;
}

#content .articles {
  margin-bottom: -25px;
}

#content .articles > div {
  display: inline-block;
  width: 300px;
  margin: 25px;
  border-radius: 10px;
  padding: 25px;
  background: white;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

#content h3 {
  display: block;
  height: 1.25em;
  overflow: hidden;
}

#content form {
  display: inline-block;
  width: 300px;
}

#content img{
  display: none;
}

#content .title-post, #content .info-post {
  color: #03396c;
}

#content .title-post {
  text-transform: capitalize;
}

#content .info-post {
  font-style: italic;
}

#content .contenu {
  text-align: justify;
  height: 150px;
  overflow: hidden;
  color:black;
}

#content .contenu a {
  margin: 0;
  padding: 0;
  border: 0;
  color: blue;
  text-decoration: underline;
}

#content .suite {
  text-align: center;
}

#content a {
  display: inline-block;
  border-radius: 10px;
  padding: 10px 20px;
  text-decoration: none;
  border: 1px #03396c solid;
  color: #03396c;
  transition: 0.3s;
}

#content a:hover {
  text-decoration: none;
  background: #6497b1;
  border: 1px white solid;
  color: white;
}

#content .floue {
  height: 150px;
  background: linear-gradient(-180deg, rgba(255,255,255,0), rgba(255,255,255,1));
  position: relative;
  margin-top: -150px;
}

#content form {
  text-align: center;
  background: #005b96;
  padding: 15px 25px;
  margin-bottom: 25px;
  color: white;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

#content form > div {
  display: flex;
  justify-content: space-around;
}

#select {
  padding: 10px 20px;
  background: #005b96;
  border: 1px white solid;
  color: white;
  border-radius: 10px;
  font-size: medium;
  transition: 0.3s;
  height: 45px;
}

#select:hover {
  background: #6497b1;
  border: 1px #005b96 solid;
}

#content label {
  line-height: 45px;
}

#content label, input {
  vertical-align: middle;
}





/* responsive */
@media screen and (max-width: 1024px) {
  #content {
  	padding: 0;
  	margin-bottom: 25px;
  }
  #content form {
    border-radius: 0;
    padding: 5vw 5vw 5vw 5vw;
    width: 90vw;
  }
  #content .articles {
  	margin-bottom: 0;
  }
  #content .articles > div {
    width: 75vw;
    padding: 5vw 5vw 5vw 5vw;
  }
 }