@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Regles generales */
*, *:after, *:before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  /* 14px par défaut */
  /*font-family: 'Noto sans', sans-serif;*/
}

a, a:hover, a:visited {
  /* ATTENTION LES LIENS SONT BLANC DANS CE MODELE*/
  color: #FFF;
  text-decoration: none;
}

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

/*******************************/
/* Starter: Prsentation       */
/*****************************/
.presentation {
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.presentation h1 {
  font-size: 8rem;
  padding-bottom: 10rem;
}

/********************/
/* HEADER:         */
/******************/
.header {
  position: relative;
}
.header__lego {
  position: absolute;
}

.menu {
  position: absolute;
  width: 100%;
  z-index: 4;
  display: flex;
  align-items: center;
}
.menu__liste__element {
  font-family: "Nunito Sans", sans-serif;
  background-color: #B5FFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  font-weight: bold;
  border-radius: 50%;
}
.menu__liste__element .menu__liste__element__link {
  color: #181818;
}

.main {
  background-color: #181818;
  color: white;
  position: relative;
  z-index: 2;
}

.choix {
  display: flex;
  flex-direction: column;
}
.choix__title {
  font-family: "Fredoka", sans-serif;
}
.choix__texte {
  font-family: "Nunito Sans", sans-serif;
}
.choix__bouton {
  font-family: "Fredoka", sans-serif;
  align-self: center;
  cursor: pointer;
}

.info__title {
  font-family: "Fredoka", sans-serif;
}
.info__texte {
  font-family: "Nunito Sans", sans-serif;
}

.temoignage {
  display: flex;
  justify-content: space-between;
  color: #181818;
}
.temoignage__element {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Nunito Sans", sans-serif;
}
.temoignage__element__content {
  background-color: white;
  display: flex;
}
.temoignage__element__content__quoteHaut {
  align-self: start;
}
.temoignage__element__content__quoteBas {
  align-self: end;
}
.temoignage__element__circle {
  position: relative;
  background-color: white;
}
.temoignage__progress {
  margin: 1rem 0;
}

.footer {
  font-family: "Nunito Sans", sans-serif;
  display: flex;
  background-color: black;
  flex-wrap: wrap;
  justify-content: space-between;
  color: white;
}
.footer__mentions {
  width: 100%;
  text-align: right;
}

/*  Page produit   */
.produit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.produit__cocy {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}
.produit__cocy__info {
  display: flex;
  flex-direction: column;
}
.produit__cocy__info__title {
  font-family: "Fredoka", sans-serif;
}
.produit__cocy__info__prix {
  font-family: "Fredoka", sans-serif;
  font-size: 32px;
  padding-bottom: 2rem;
}
.produit__cocy__info__savoirPlus {
  font-family: "Fredoka", sans-serif;
  cursor: pointer;
  text-decoration: underline;
}
.produit__cocy__info__ajoutPannier {
  font-family: "Fredoka", sans-serif;
  border: white solid 2px;
  border-radius: 10px;
  text-align: center;
}

/* Input Thumb */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #B5FFFF;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #ffffff;
  transition: background 0.3s ease-in-out;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #B5FFFF;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #fafafa;
  transition: background 0.3s ease-in-out;
}

input[type=range]::-ms-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #B5FFFF;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #f6f4f4;
  transition: background 0.3s ease-in-out;
}

input[type=range]::-webkit-slider-thumb:hover {
  background: #B5FFFF;
}

input[type=range]::-moz-range-thumb:hover {
  background: #B5FFFF;
}

input[type=range]::-ms-thumb:hover {
  background: #B5FFFF;
}

/* Input Track */
input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type=range]::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type=range]::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

@media screen and (min-width: 768px) {
  .header {
    z-index: 10;
  }
  .header__img, .header__menuBurger {
    display: none;
  }
  .header__imgDesktop {
    filter: brightness(0.7);
  }
  .header__deco {
    display: none;
  }
  .header__lego {
    bottom: -40px;
    right: 0;
    z-index: 4;
    width: 40%;
    overflow: hidden;
  }
  .header__content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 65vw;
  }

  .menu__fermer {
    display: none;
  }
  .menu__liste {
    display: flex;
    width: 100%;
    justify-content: space-around;
    padding-top: 2rem;
  }
  .menu__liste__element {
    width: 150px;
    height: 150px;
  }
  .menu__liste__element .menu__liste__element__link {
    font-size: 20px;
    line-height: 26px;
    padding: 4px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header {
    overflow: hidden;
    height: 85vh;
  }
  .header__content {
    display: none;
  }
  .header__menuBurger {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 50px;
    cursor: pointer;
    margin-right: 2rem;
  }
  .header__lego {
    bottom: -30px;
    right: -200px;
    width: 110%;
    z-index: 3;
  }
  .header__deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  .header__img {
    width: 100%;
  }
  .header__imgDesktop {
    display: none;
  }

  .menu {
    height: 100vh;
    flex-direction: column;
    flex-wrap: wrap;
    display: flex;
    background-color: #181818;
  }
  .menu__fermer {
    position: absolute;
    float: right;
    width: 40px;
    margin: 26px;
    align-self: end;
    right: 30px;
  }
  .menu__liste {
    position: relative;
    top: -60px;
    padding-top: 15rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .menu__liste__element {
    width: 100px;
    height: 100px;
    margin: 2rem;
  }
  .menu__liste__element .menu__liste__element__link {
    color: #181818;
    font-size: 13px;
    padding: 4px;
    line-height: 22px;
  }

  .left {
    left: -500px;
  }
}
@media screen and (min-width: 768px) {
  .main .sections {
    display: grid;
    grid-template-rows: 50rem 70rem 50rem;
    grid-template-columns: 4fr 4fr;
    grid-template-areas: "video carte" "choix info" "rien temoignages";
  }
  .main__triangleGauche {
    position: relative;
    left: -55rem;
    top: -35rem;
  }
  .main__triangleDroite {
    position: absolute;
    top: -70rem;
  }
  .main__elements {
    display: flex;
    position: absolute;
    top: 0;
    justify-content: space-between;
    width: 100%;
  }
  .main__elements__logo {
    width: 17vw;
    margin: 2.5vw;
  }
  .main__elements__slogan {
    font-family: "Barlow", sans-serif;
    color: #181818;
    font-size: 2vw;
    padding: 30px 0;
  }
  .main__elements .container {
    position: relative;
    margin-right: 5vw;
    margin-top: 5vw;
  }
  .main__elements .container__borderTop {
    border-top: 1px solid #181818;
    position: absolute;
    right: 25%;
    left: 25%;
    width: 50%;
  }
  .main__elements .container__borderBottom {
    border-bottom: 1px solid #181818;
    position: absolute;
    right: 25%;
    left: 25%;
    width: 50%;
  }
  .main__cocyclage {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    position: relative;
    top: -200px;
  }
  .main__search {
    position: absolute;
    right: 0;
    background-color: #B5FFFF;
    border-radius: 5px;
    border: none;
    padding: 1rem 3rem 1rem 3rem;
    margin-right: 8rem;
    font-size: 18px;
  }
  .main__search::placeholder {
    background-image: url("/assets/img/search_black_24dp.svg");
    opacity: 0.6;
    position: relative;
    right: 0;
    background-repeat: no-repeat;
    background-size: 25px;
    padding-left: 25px;
    padding-right: 25px;
    background-position: right;
  }

  .choix {
    grid-area: choix;
  }

  .video {
    grid-area: video;
    padding: 1rem 2.5rem;
    justify-self: center;
  }
  .video__img {
    width: 40vw;
    cursor: pointer;
  }

  .carte {
    grid-area: carte;
    padding-top: 10rem;
    justify-self: center;
  }
  .carte__img {
    width: 40vw;
  }

  .info {
    grid-area: info;
  }

  .choix {
    padding: 0 10rem 5rem 8rem;
  }
  .choix__title {
    font-size: 34px;
    padding: 2.5rem 0;
  }
  .choix__texte {
    font-size: 24px;
    padding: 3.5rem 0;
  }
  .choix__bouton {
    font-size: 34px;
    padding: 10px;
    border: white 1px solid;
    border-radius: 5px;
    margin: 10rem 0;
  }

  .info {
    padding: 7rem 7rem;
  }
  .info__title {
    font-size: 32px;
    padding: 2rem 0 5rem 0;
  }
  .info__texte {
    padding: 1rem 0;
    font-size: 22px;
    line-height: 60px;
  }

  .temoignage {
    grid-area: temoignages;
    margin: 0 16rem 0 6rem;
    align-items: center;
  }
  .temoignage__element {
    margin: 0 1rem 10rem 1rem;
  }
  .temoignage__element__content {
    width: 370px;
    height: 300px;
    box-shadow: 0 0 15px white;
    padding: 10rem 4rem;
  }
  .temoignage__element__content__texte {
    padding: 0 0 0 1rem;
    line-height: 32px;
    font-size: 28px;
  }
  .temoignage__element__content__quoteHaut {
    width: 120px;
    padding-right: 1rem;
    position: relative;
    top: -20px;
  }
  .temoignage__element__content__quoteBas {
    width: 120px;
    padding-left: 1rem;
    position: relative;
    bottom: -20px;
  }
  .temoignage__element__circle {
    bottom: -5rem;
    border-radius: 50%;
    box-shadow: 7px 0 white;
  }
  .temoignage__element__circle__img {
    width: 170px;
  }
  .temoignage__flecheGauche {
    width: 30px;
  }
  .temoignage__flecheDroite {
    width: 30px;
  }

  .footer {
    margin-top: 1px;
    padding: 5rem 8rem;
  }
  .footer__content__texte {
    padding: 3px 0;
    font-size: 24px;
    cursor: pointer;
    line-height: 30px;
  }
  .footer__mentions {
    padding: 2rem 0;
    font-size: 18px;
    cursor: pointer;
  }

  .produit__cocy {
    padding-bottom: 6rem;
  }
  .produit__cocy__img {
    width: 300px;
  }
  .produit__cocy__info__title {
    font-size: 42px;
    width: 300px;
    padding-bottom: 2rem;
  }
  .produit__cocy__info__prix {
    font-size: 32px;
    padding-bottom: 2rem;
  }
  .produit__cocy__info__savoirPlus {
    font-size: 24px;
    padding-bottom: 2rem;
  }
  .produit__cocy__info__ajoutPannier {
    width: 300px;
    font-size: 28px;
    padding: 15px 0;
  }

  input[type=range] {
    -webkit-appearance: none;
    margin-right: 15px;
    width: 550px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    background-image: linear-gradient(#B5FFFF, #B5FFFF);
    background-size: 70% 100%;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 2rem;
  }
  .main__triangle, .main__elements {
    display: none;
  }
  .main__cocyclage {
    width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .main__search {
    display: none;
  }

  .choix {
    padding: 0 1rem 5rem 1rem;
  }
  .choix__title {
    font-family: "Fredoka", sans-serif;
    font-size: 22px;
    padding: 2.5rem 0;
  }
  .choix__texte {
    font-size: 20px;
    padding: 1.5rem 0;
  }
  .choix__bouton {
    font-size: 18px;
    padding: 5px;
    border: white 2px solid;
    border-radius: 10px;
    margin: 2rem 0;
  }

  .video {
    background-color: #B5FFFF;
    padding: 4rem 1.5rem;
  }

  .carte {
    padding: 5rem 1.5rem;
  }

  .info {
    background-color: #B5FFFF;
    color: #181818;
    padding: 0 2rem;
  }
  .info__title {
    font-size: 18px;
    padding: 2rem 0;
  }
  .info__texte {
    padding: 1rem 0;
  }

  .temoignage {
    padding: 0 2rem;
  }
  .temoignage__element {
    margin: 5rem 1rem 10rem 1rem;
  }
  .temoignage__element__content {
    width: 170px;
    height: 140px;
    box-shadow: 0 0 15px white;
    padding: 3rem 1rem;
  }
  .temoignage__element__content__texte {
    padding: 0 0 0 1rem;
    line-height: 17px;
  }
  .temoignage__element__circle {
    border-radius: 50%;
    box-shadow: 7px 0 white;
  }

  .footer {
    margin-top: 1px;
    padding: 2rem;
  }
  .footer__content__texte {
    padding: 3px 0;
  }
  .footer__mentions {
    padding: 2rem 0;
  }

  .produit__cocy {
    padding-bottom: 4rem;
  }
  .produit__cocy__img {
    width: 160px;
  }
  .produit__cocy__info__title {
    font-size: 32px;
    width: 200px;
    padding-bottom: 1rem;
  }
  .produit__cocy__info__prix {
    font-size: 24px;
    padding-bottom: 1rem;
  }
  .produit__cocy__info__savoirPlus {
    font-size: 18px;
    padding-bottom: 1rem;
  }
  .produit__cocy__info__ajoutPannier {
    width: 150px;
    font-size: 14px;
    padding: 7px 0;
  }

  input[type=range] {
    -webkit-appearance: none;
    margin-right: 15px;
    width: 350px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    background-image: linear-gradient(#B5FFFF, #B5FFFF);
    background-size: 70% 100%;
    background-repeat: no-repeat;
  }
}