@charset "UTF-8";
/* VARIABLES */
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
*, ::before, ::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
}

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

.light-bg {
  background-color: white;
  color: #116C7C;
}

/* BANNIÈRE */
.navbar {
  padding: 30px 0;
}
.navbar a {
  color: #116C7C;
}
.navbar .offcanvas {
  max-width: 80%;
}
.navbar .offcanvas__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.navbar .offcanvas__footer--socials a {
  color: #116C7C;
}

.banner {
  width: 100%;
}
.banner__desk {
  display: none;
}
.banner__mob {
  width: 100%;
}

/* RESPONSIVE */
@media screen and (min-width: 768px) {
  .banner__desk {
    display: block;
    width: 100%;
  }
  .banner__mob {
    display: none;
  }
}
@media screen and (min-width: 991px) {
  .offcanvas__footer {
    display: none;
  }
}
.footer {
  color: #116C7C;
  background-image: url("./images/marbre.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 30px;
}
.footer a {
  color: #116C7C;
  text-decoration: none;
}
.footer a:hover {
  color: rgb(132, 188, 192);
  transform: scale(1.5);
}
.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;
}
.footer__socials {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 15px 0;
}
.footer__copy {
  display: flex;
  padding-top: 15px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer__copy--shop {
  margin-right: 10px;
  font-weight: bolder;
}

@media screen and (min-width: 768px) {
  .footer__links--list {
    display: flex;
    justify-content: space-evenly;
  }
  .footer__copy {
    align-items: center;
    justify-content: center;
  }
}
main {
  position: relative;
}

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

.title {
  text-align: center;
  padding: 5vh 0;
  text-transform: uppercase;
}
.title h1 {
  font-size: 25px;
}

/* SECTION DES PRODUITS */
.collection {
  margin: 10px 10%;
}

.product {
  margin: 0 auto;
  max-width: 1100px;
}
.product__first {
  padding: 10px 10%;
}
.product__second {
  padding: 10px 10%;
  background-color: black;
  color: white;
}
.product div {
  margin: 50px 0;
}

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

@media screen and (min-width: 768px) {
  .product {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product__second {
    background-color: white;
    color: #116C7C;
  }
  .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;
}

.button {
  color: white;
  background-color: #116C7C;
  border-radius: 0;
}
.button:hover {
  transition: 0.5s;
  background-color: rgb(162, 186, 196);
  color: white;
}

.newsletter {
  max-width: 400px;
  padding: 50px 0;
}
.newsletter button {
  width: 50%;
}
.newsletter input {
  border: solid 1px white;
  background-color: transparent;
}

@media screen and (min-width: 768px) {
  .newsletter {
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */