/* VARIABLES */
@import url("https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz@6..12&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap");
*,
::before,
::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0 auto;
  scroll-behavior: smooth;
}

main {
  min-height: 100%;
  background-color: white;
  color: black;
}
main::after {
  content: "";
  display: block;
}

body::-webkit-scrollbar {
  background: lightgrey;
}
body::-webkit-scrollbar-thumb {
  background: rgb(157, 33, 33);
  border-radius: 20px;
}

@font-face {
  font-family: "Ethnocentric";
  src: url("./fonts/ethnocentric-rg.otf") format("opentype");
}
main {
  position: relative;
  top: 0;
}

.title {
  text-align: center;
  padding: 10vh 0;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
}

/* SECTION DES PRODUITS */
.featured-product {
  margin: 50px 10%;
}

.video-container {
  width: 100%;
}
.video-container video {
  width: 100%;
}

.navbar {
  padding: 0;
  z-index: 1000;
}

.banner {
  /* background-image: url("../images/banmobile.png");
   width: 100%;
   height: 100%;
   background-size: cover;
   background-position: center;
   position: fixed;*/
}
.banner__img img {
  position: absolute;
  margin: 50%;
  width: 50%;
}

/* LOGO*/
.logo {
  position: absolute;
  text-align: center;
  z-index: 2000;
  margin: 0 auto;
}
.logo__img {
  width: 200px;
  top: 5vh;
  position: relative;
  text-align: center;
}
.logo.fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: auto;
}
.logo.fixed img {
  bottom: 0;
}

/* RESPONSIVE */
@media screen and (min-width: 768px) {
  .banner {
    background-image: url("../images/bandesk.png");
  }
}
.footer {
  font-family: "Nunito Sans";
  background-color: white;
  color: #741714;
  position: relative;
  padding: 30px;
}
.footer a {
  color: black;
  text-decoration: none;
}
.footer a:hover {
  transform: scale(1.5);
  color: #741714;
  font-size: bolder;
}
.footer ul {
  margin-left: 0;
  padding-left: 0;
}
.footer li {
  list-style-type: none;
}
.footer__links {
  padding: 15px 0;
}
.footer__socials {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 15px 0;
}

@media screen and (min-width: 500px) {
  .footer__links {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .footer__links--list {
    display: flex;
    justify-content: space-evenly;
  }
  .footer__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.collection {
  margin: 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.collection__card {
  width: 100%;
  text-align: center;
  text-decoration: none;
  border: none;
  margin-top: 50px;
  transition: 1s;
}
.collection__card img {
  width: 100%;
}
.collection__card--title {
  color: black;
  font-family: "Nunito Sans";
}
.collection__card--title h4 {
  font-size: 18px;
}
.collection__card--title p {
  font-size: 12px;
  color: #404041;
}

.featured-product {
  margin: 0 auto;
  max-width: 1100px;
  padding: 10vh 5vh;
}/*# sourceMappingURL=style.css.map */