.align-horiz, #footer-nav ul, footer .social ul, header .container-fix, #primary-nav ul {
  display: flex;
}

.align-horiz-space-between, header .container-fix {
  justify-content: space-between;
}

.align-horiz-space-around {
  justify-content: space-around;
}

.align-horiz-center, footer .social ul {
  justify-content: center;
}

.align-vertical {
  display: flex;
  flex-direction: column;
}

.icon::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.2rem;
}

.primary-color {
  color: orange;
}

#header-logo > div:first-of-type {
  align-items: center;
}

header > img {
  display: block;
}

header > div:first-of-type {
  background: #efefef;
  align-items: center;
  padding: 34px 0 12px 0;
  margin-bottom: 21px;
}

#primary-nav ul a {
  display: block;
  padding: 5px 45px 5px 0;
  color: black;
}

main {
  background: #f3f3f3;
  padding: 45px 108px;
}

.products .align-horiz {
  flex-wrap: wrap;
  justify-content: space-between;
}

.products h2 {
  text-align: center;
  text-transform: uppercase;
  width: 366px;
  position: absolute;
  bottom: 58px;
  color: black;
}

.products li {
  position: relative;
  margin-bottom: 70px;
  width: 366px;
}

.button-reduction {
  font-family: "primary-font-bold", sans-serif;
  font-size: 1.8rem;
  text-decoration: none;
  text-align: center;
  color: orange;
  position: absolute;
  right: -18px;
  top: 8px;
  padding: 15px;
  background: #292929;
  border-radius: 15px;
  z-index: 2;
  color: orange;
}

.price {
  margin-top: 19px;
  display: flex;
  justify-content: center;
}

.prix-barre {
  font-family: "primary-font", sans-serif;
  font-size: 1.5rem;
  color: black;
  text-decoration: line-through;
  margin-right: 15px;
}

.prix-promo {
  font-family: "primary-font-bold", sans-serif;
  font-size: 1.5rem;
  color: orange;
  color: orange;
}

.vente {
  margin-right: 15px;
  border: none;
  background: #292929;
  color: white;
  padding: 5px 25px;
  cursor: pointer;
}

footer hr {
  height: 3px;
  background: #818181;
  border: none;
  margin: 30px 10px;
}

footer {
  background: #373737;
}
footer > div > ul {
  justify-content: space-evenly;
}
footer > div > ul li {
  width: 20%;
  text-align: center;
}

#footer-nav {
  width: 516px;
  margin: auto;
  background: #fff;
  padding: 10px 0;
  border-radius: 5px;
  position: relative;
  top: -18px;
}
#footer-nav ul {
  justify-content: space-evenly;
}

#footer-nav a {
  color: black;
}

footer .social {
  margin-bottom: 15px;
}
footer .social ul li {
  margin-right: 72px;
}

footer p {
  color: white;
}

.icon-enveloppe::before {
  content: "\f0e0";
  font: var(--fa-font-solid);
  color: #818181;
  font-size: 4rem;
}

.icon-apple::before {
  content: "\f5d1";
  font: var(--fa-font-solid);
  color: #818181;
  font-size: 4rem;
}

.icon-music::before {
  content: "\f001";
  font: var(--fa-font-solid);
  color: #818181;
  font-size: 4rem;
}

.icon-pastille::after {
  content: "\f111";
  font: var(--fa-font-solid);
  color: #818181;
  font-size: 1rem;
  margin-left: 28px;
}

#copyright {
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  padding: 20px 0;
}

@font-face {
  font-family: primary-font;
  src: url(../fonts/LiberationSans-Regular-webfont.ttf);
}
@font-face {
  font-family: primary-font-bold;
  src: url(../fonts/LiberationSans-Bold-webfont.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

html {
  font-size: 14px; /* definit 1 rem */
}

body {
  background: #1c1c1c;
  font-family: "primary-font", sans-serif, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.container-fix {
  max-width: 1051px;
  margin: auto;
}