#content {
  padding: 50px 75px;
  display: flex;
  justify-content: space-around;
  text-align: justify;
}

.img {
  width:100%;
  text-align: center;
}

iframe  {
  width: 55vw;
  height: 30.9375vw;
}

#content article {
  width: 70vw;
}

#content aside {
  width: 20vw;
  background: white;
  text-align: center;
  border-radius: 10px;
  color: #005b96;
  padding: 0px 25px 0px 25px;
  margin-left: 75px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#content aside img{
  display: none;
}

#content h2 {
  color: #03396c;
}

.signature {
  text-align: right;
  font-weight: bold;
  color: #03396c;
}

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

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

#content aside .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 aside .suite {
  text-align: center;
  padding-bottom: 25px;
}

#content aside h2{
  margin: 25px;
  color: #005b96;
}

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

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

#content aside .header-post {
  border-top: 1px #005b96 solid;
  padding-top: 25px;
}

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

/* Content (responsive) */
@media screen and (max-width: 1024px) {
  #content {
    flex-direction: column;
    padding: 0px;
  }
  iframe  {
    width: 90vw;
    height: 50.625vw;
  }
  #content article {
    width: 90vw;
    padding: 5vw 5vw 5vw 5vw;
  }
  #content aside {
    width: 90vw;
    padding: 0vw 5vw 0vw 5vw;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    background: whitesmoke;
  }
  #content aside .floue {
    background: linear-gradient(-180deg, rgba(245,245,245,0), rgba(245,245,245,1));
  }
}





/* Responsive Header */
@media screen and (max-width: 440px) {
  header h2, header p {
    display: none;
  }
  #logo {
    margin-right: 0;
  }
}