@charset "UTF-8";
/* VARIABLES */
*, ::before, ::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0 auto;
}

main {
  min-height: 100%;
}
main::after {
  content: "";
  display: block;
}

.light-bg {
  background-color: white;
  color: black;
}

/* BANNIÈRE */
.navbar {
  padding: 17px 0;
}

.banner {
  height: 400px;
  background-image: url("../images/banmobile.jpg");
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: fixed;
}
.banner__img img {
  position: absolute;
  margin: 50% 25%;
  width: 50%;
}

/* RESPONSIVE */
@media screen and (min-width: 768px) {
  .banner {
    background-image: url("../images/bandesk.jpg");
  }
}
.footer {
  background-color: black;
  color: white;
  position: relative;
  top: 80vh;
  padding: 30px;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer ul {
  margin-left: 0;
  padding-left: 0;
}
.footer li {
  list-style-type: none;
}
.footer__logo {
  text-align: center;
  padding: 15px;
}
.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;
  }
}
main {
  position: relative;
  top: 80vh;
  padding-bottom: 20vh;
}

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

.title {
  text-align: center;
  padding: 5vh 0;
}

/* SECTION DES PRODUITS */
.product {
  margin: 0 auto;
  max-width: 1200px;
}
.product__first {
  padding: 10px 10%;
}
.product__second {
  padding: 10px 10%;
  background-color: black;
  color: white;
}
.product div {
  margin: 20px 0;
}
.product__cards {
  flex-wrap: wrap;
}

.collection {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .product {
    display: flex;
  }
  .product__second {
    background-color: white;
    color: black;
  }
  .product__cards {
    display: flex;
    justify-content: space-evenly;
  }
  .shopify-buy__product__title {
    color: black !important;
  }
}
.slider-collection {
  text-align: center;
}

#product-component-1689082072302, #product-component-1689082312209 {
  margin: 0 auto;
  max-width: 50% !important;
}

.card {
  background-color: white;
  color: black;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 20px;
  text-align: center;
}
.card__title {
  font-size: 15px;
}
.card img {
  width: 70%;
}
.card__img--1 {
  position: absolute;
  opacity: 0;
  transition: 0.5s;
}
.card__img--2 {
  transition: 0.5s;
}
.card__img:hover .img1 {
  opacity: 1;
}
.card__img:hover .img2 {
  opacity: 0;
}
.card div {
  height: 100%;
}
.card__desclink, .card__desclink2 {
  cursor: pointer;
}
.card__desclink--more, .card__desclink--more2, .card__desclink2--more, .card__desclink2--more2 {
  display: none;
}
.card__desclink:hover, .card__desclink2:hover {
  color: orangered;
}
.card__content {
  text-align: center;
}
.card__buybutton {
  width: 50%;
}

.open {
  display: block;
}

.close {
  display: none;
}

@media screen and (min-width: 768px) {
  .card {
    width: 30rem;
  }
}/*# sourceMappingURL=style.css.map */