.medias-container {
  display: flex;
  flex-wrap: wrap;
  min-width: 320px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  padding-left: 32px;
  padding-right: 32px;
}

.medias-container div {
  width: 48%;
}

.medias {
  min-width: 320px;
  width: 100%;
  background: rgb(195, 78, 104);
  background: linear-gradient(
    90deg,
    rgba(195, 78, 104, 1) 0%,
    rgba(118, 60, 127, 1) 100%
  );
  padding-bottom: 48px;
}

.medias h2 {
  font-family: "rift-soft", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
  margin-top: 48px;
  margin-bottom: 48px;
  min-width: 320px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}

.medias h2 i {
  color: #cc6a80;
  margin-right: 8px;
  font-size: 24px;
}

/* Media Queries */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */

/* Mobile */
/* ------------------------------------------------------------------------ */

@media only screen and (min-width: 0px) and (max-width: 480px) {
  /* General */
  /* ------------------------------------------------------------------------ */

  .medias-container div {
    width: 100%;
  }
}

/* Tablette Portrait */
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 480px) and (max-width: 800px) {
  /* General */
  /* ------------------------------------------------------------------------ */
  .medias-container div {
    width: 100%;
  }
}

/* Tablette paysage */
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 800px) and (max-width: 960px) {
  /* General */
  /* ------------------------------------------------------------------------ */
}

/* Petit écran */
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 961px) and (max-width: 1279px) {
  /* General */
  /* ------------------------------------------------------------------------ */
}
