* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;


}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #181a19;
}

.close-center {
  cursor: pointer;
  padding: 10px;
  text-align: right;
}

.close-center i {
  font-size: 24px;
  color: #333;
}

.slide-menu-center {
  margin-right: -100%;
  width: 100%;
  background-color: #400101;
  transition: margin-right 0.3s ease;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1000;
  color: #fff;
}

i {
  cursor: pointer;
}

p {
  letter-spacing: normal;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
}

.h1,
h1 {
  font-size: 2.5rem;
  margin-left: 1rem;
}

img.logo {
  height: 4.5rem;
}

.btn.find {
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 2rem;
  background: goldenrod;
  padding: 0.1rem;
  cursor: pointer;
}

/* Style des sections */
.section {
  display: grid;
  gap: 20px;
  /* Espacement entre les éléments */

  color: #fff;
  /* Couleur du texte */
  padding: 20px;
  /* Espacement intérieur de la section */
}

/* Style des carrés */
.square {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  height: 60px;
}

.square0 {
  width: 100%;
  margin-top: 0px;
  justify-content: flex-start;
  margin-left: 5rem;
}

.square0A {
  width: 100%;
  margin-top: 0px;
  justify-content: flex-start;

}

.section.header {
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  background: #400101;

  grid-template-columns: repeat(2, 1fr);
  /* Trois colonnes de largeur égale */

}

.nav {
  display: flex;
}

ul.nav-ul {
  display: flex;
}

.nav li {
  margin-left: 1rem;

}

.nav li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
}

.nav li a:hover {
  color: #d4a22d;
  text-transform: uppercase;
  font-size: 1rem;
}

.menu-responsive {
  display: none !important;
}

/* Style pour le menu déroulant */
.menu-responsive ul {
  display: none;
  background: #400101;
  /* Couleur de fond du menu déroulant */
  position: absolute;
  top: 50px;
  /* Ajustez cette valeur en fonction de l'emplacement souhaité du menu déroulant */
  left: 0;
  width: 100%;
}

.menu-responsive.active ul {
  display: block;
}

.menu-responsive ul li {
  padding: 10px;
}

.menu-responsive ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
}

/* Style pour l'icône du menu (hamburger) */
.menu-responsive i {
  display: block;
  font-size: 24px;
  cursor: pointer;
}



/* Styles pour le menu déroulant */

.slide-menu {
  margin-left: -100%;
  /* Définissez la valeur de départ du margin-left selon vos préférences pour cacher le menu */
  width: 300px;
  /* Définissez la largeur du menu selon vos préférences */
  background-color: #400101;
  /* Couleur de fond du menu */
  transition: margin-left 0.3s ease;
  /* Animation de transition pour le margin-left */
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1000;
  /* Définissez une valeur z-index appropriée */
}

.menu-content {
  display: grid;
  flex-direction: column;
  align-items: center;
  justify-content: center;


}

.menu-content a {
  font-size: 1.5rem;
  text-decoration: none;
  color: #fff;
  display: flex;
  /* Utilisez flex pour aligner le texte et l'icône */
  align-items: center;
  /* Alignez le contenu verticalement au centre */
}

i.ri-arrow-right-line {
  color: #3f160d;
  font-size: 2rem;
}

.menu-content a i {
  margin-left: 10px;
  /* Ajoutez une marge à gauche de l'icône pour l'espacement */
  opacity: 0;
  /* Rend l'icône invisible par défaut */
  transition: opacity 0.5s;
  /* Ajoute une transition de 0.5 seconde pour un fondu en douceur */
}

.menu-content a:hover i {
  opacity: 1;
  /* Rend l'icône visible au survol */
  transition-delay: 0.5s;
  /* Ajoute un délai de 0.5 seconde avant que l'icône ne devienne visible */
}






.close {
  cursor: pointer;
  padding: 10px;
  text-align: right;
}

.close i {
  font-size: 24px;
  color: goldenrod;
}

/**** ETAPE 2 *****/

section.hero {
  background-image: url('https://assets.codepen.io/2045819/hero-billot.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  BACKGROUND-ATTACHMENT: inherit;


}

@media(min-width:1200PX) {

  section.hero {
    background-image: url('https://assets.codepen.io/2045819/hero-billot.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    BACKGROUND-ATTACHMENT: fixed;

  }

  .square.square2image {
    background: url(https://assets.codepen.io/2045819/billot-about.png) no-repeat;
    height: 55VH;
    position: relative;
    left: 8rem;
    top: 3rem;
    background-size: cover;
    width: 100%;
  }

}

@media (min-width: 920px) and (max-width: 1200px) {
  .menu-responsive {
    display: block !important;
    float: right;
    position: absolute;
    right: 30px;
    font-size: 3rem;
  }

  .nav {
    display: none;
  }

  .parallax-bis {
    background-image: url(https://boucherie-lebillot.fr/img/bg-video.png);
    height: 300px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 7rem;
    color: #400101;
  }

  .square.square2image {
    background: url(https://assets.codepen.io/2045819/billot-about.png) no-repeat;
    height: 55VH;
    position: relative;
    left: 8rem;
    top: 3rem;
    background-size: cover;
    width: 100%;
  }
}


@media(max-width:920PX) {

  section.hero {
    background-image: url('https://assets.codepen.io/2045819/hero-billot.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    BACKGROUND-ATTACHMENT: unset;


  }

  .parallax-bis {
    background-image: url(https://boucherie-lebillot.fr/img/bg-video.png);
    height: 300px;
    background-attachment: unset;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 7rem;
    color: #400101;
  }

  .square.square2image {
    background: url(https://assets.codepen.io/2045819/billot-about.png) no-repeat;
    height: 55VH;
    position: relative;
    left: 8rem;
    top: 3rem;
    background-size: cover;
    width: 100%;
  }

}



/****ETAPE 3 *******/


section.section.apropos {
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  background: #181a19;
  height: 100vh;

  /*grid-template-columns: repeat(3, 1fr); /* Trois colonnes de largeur égale */
  grid-template-columns: 1fr 1fr 2fr;
}


.square.square2 {
  background: red;
  height: 300px;

}


.square.square2image {
  background: url(https://assets.codepen.io/2045819/billot-about.png) no-repeat;
  height: 50VH;
  position: relative;
  left: 8rem;
  top: 3rem;
  background-size: contain
}

.square.square2border {
  background: transparent;
  width: 40VH;
  height: 50vh;
  border: 1px solid goldenrod;
}

.square.square2text {
  height: 300px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  height: 300px;
  font-weight: 100;
  display: block;
  padding: 2rem;

}

.square.square2text h2 {
  color: goldenrod;
  margin-bottom: 2rem;
  font-family: 'Dancing Script', cursive;

}

.square.square2text h2::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  /* top: 50%; */
  margin-top: 18px;
  background: goldenrod;
}

/*****ETAPE 4 ******/
.scroll-downs {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 34px;
  height: 55px;
}

.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
  cursor: pointer;
}

.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15, .41, .69, .94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
  }

  10% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}


/****ETAPE 4 ****/

.slider-content {
  width: 100%;
  height: 150px;
  background: #400101;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  margin-top: 4rem;
}

.owl-carousel .owl-item img {
  display: block;
  width: 80%;
  align-items: center;
  justify-content: center;
}

.owl-theme .owl-nav {

  display: none !important;
}


/**ETAPE 5 */

section.section.venir {
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  background: #181a19;
  height: 100vh;

  /*grid-template-columns: repeat(3, 1fr); /* Trois colonnes de largeur égale */
  grid-template-columns: 2fr 1fr 1fr;
}

.squarevenirtext {
  height: 300px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  height: 300px;
  font-weight: 100;
  display: block;
  padding: 2rem;

}


.square.squarevenirtext h2 {
  color: goldenrod;
  margin-bottom: 2rem;
  font-family: 'Dancing Script', cursive;

}

.square.squarevenirtext h2::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  /* top: 50%; */
  margin-top: 18px;
  background: goldenrod;
}


.squarevenirimage {
  background: url(https://assets.codepen.io/2045819/billot-team.png) no-repeat;
  height: 50vh;
  position: relative;
  right: -7rem;
  top: 5rem;
}

.squarevenirbordure {
  background: transparent;
  height: 50vh;
  border: 1px solid goldenrod;
  margin-right: 2rem;
}


/****ETAPE 6 ******/
.parallax {
  background-image: url(https://assets.codepen.io/2045819/parallax-billot.png);
  height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

section.section.generateurderecette {
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  background: #181a19;



  /*grid-template-columns: repeat(3, 1fr); /* Trois colonnes de largeur égale */
  grid-template-columns: 1fr 1fr 2fr;
}

.top.generateurderecette {
  width: 100%;
  height: 80px;
  background-color: #400101;
  display: flex;
  align-items: center;
}

label {
  margin-left: 2rem;
  color: #fff;
  padding: 1rem;
}

select#recipes {
  height: 50px;
}


.square.squaregenerateurderecettetexte {
  margin-top: -15rem;
  text-align: left;
  display: block;

}

.square.squaregenerateurderecettetexte h2 {
  color: goldenrod;
  margin-bottom: 2rem;
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
}

.square.squaregenerateurderecettetexte h2::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  /* top: 50%; */
  margin-top: 18px;
  background: goldenrod;
}

.squaregenerateurderecetteimage {

  height: 50vh;
  position: relative;
  right: -7rem;
  top: 5rem;
  overflow: hidden;
}

.squaregenerateurderecettebordure {
  background: transparent;
  height: 50vh;
  border: 1px solid goldenrod;
  margin-right: 2rem;
}

/* Style pour aligner les icônes avant les textes */
p#recipeCookingTime::before,
p#recipePreparingTime::before,
p#recipeServing::before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 80px;
  margin-right: 8px;
  background-repeat: no-repeat;
}

/* Style pour l'icône de temps de cuisson */


/* Style pour l'icône de temps de préparation */




/* Appliquez d'autres styles au texte si nécessaire */
p#recipeCookingTime,
p#recipePreparingTime {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 2rem;
}

p#recipeCookingTime::before {
  content: "";
  /* Contenu généré */
  display: inline-block;
  /* Pour que l'image apparaisse inline */
  width: 50px;
  /* Largeur de l'image */
  height: 50px;
  /* Hauteur de l'image */
  background-image: url('https://assets.codepen.io/2045819/marmite.PNG');
  /* URL de l'image */
  background-size: contain;
  /* Ajuster la taille de l'image */
  margin-right: 10px;
  /* Marge à droite de l'image */
}

p#recipeDescription {
  text-align: left;
  margin-bottom: 2rem;
  background: #400101;
  padding: 2REM;
  font-family: 'dancing script';
  font-size: 1.5rem;

}

p#recipeServing {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 2rem;

}

p#recipeServing::before {
  content: "";
  /* Contenu généré */
  display: inline-block;
  /* Pour que l'image apparaisse inline */
  width: 50px;
  /* Largeur de l'image */
  height: 50px;
  /* Hauteur de l'image */
  background-image: url('https://assets.codepen.io/2045819/couvert.PNG');
  /* URL de l'image */
  background-size: contain;
  /* Ajuster la taille de l'image */
  margin-right: 10px;
  /* Marge à droite de l'image */
}



p#recipePreparingTime::before {
  content: "";
  /* Contenu généré */
  display: inline-block;
  /* Pour que l'image apparaisse inline */
  width: 50px;
  /* Largeur de l'image */
  height: 50px;
  /* Hauteur de l'image */
  background-image: url('https://assets.codepen.io/2045819/minuteur.PNG');
  /* URL de l'image */
  background-size: contain;
  /* Ajuster la taille de l'image */
  margin-right: 10px;
  /* Marge à droite de l'image */
}





.icone-description {
  height: 3rem;
  display: block;
}

.btn.download {
  text-align: center;
  font-size: 1rem;
  background: #400101;
  width: 37%;
  padding: 1rem;
  margin: auto;
  cursor: pointer;

}


/****ETAPE 7 *****/

section.slider-content.bis {
  margin-top: 15rem !important;
}


/*** ETAPE 8 *****/

section.section.presentation {
  align-items: center;
  justify-content: center;
  margin-top: 0px;


  grid-template-columns: 1fr 2fr;

}


.square.square-info {
  border: 1px solid goldenrod;
  ;
  height: 75VH;
  display: flex;
  color: #fff;
  line-height: 23px;
  align-items: center;
  justify-content: center;
  flex-direction: column;

}

.square.square-map {
  border: 1px solid goldenrod;
  ;
  height: 75VH;
}

.btn-contact {
  text-align: center;
  color: #400101;
  font-size: 1rem;
  background: goldenrod;
  width: 37%;
  padding: 1rem;
  margin: auto;
  cursor: pointer;

}


/*** ETAPE 9 ****/
.parallax-bis {
  background-image: url(https://boucherie-lebillot.fr/img/bg-video.png);
  height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 7rem;
  color: #400101;

}

.slide-menu-video {
  margin-right: -100%;
  width: 100%;
  background-color: #400101;
  transition: margin-right 0.3s ease;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1000;
  color: #fff;
}

.close-video {
  cursor: pointer;
  padding: 10px;
  text-align: right;
}

.close-video i {
  font-size: 24px;
  color: #333;
}

/**** ETAPE 10 ****/

section.section.presentation-video {
  align-items: center;
  justify-content: center;
  margin-top: 0px;


  grid-template-columns: 1fr;

}

video {
  width: 30%;
  margin-top: 50%;
}


/****ETAPE 11 ******/

section.section.partenaires {
  height: 40VH;
  BACKGROUND: #400101;
  margin-top: 10rem;
}

section.slider-content.mt-15 {
  margin-top: 15rem;
}

section.title {
  background: #181a19;
  position: absolute;
  margin-top: 9rem;
  margin-left: 8rem;
  font-family: 'Dancing Script';
  color: #d7a21f;
}

section.title::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  /* top: 50%; */
  margin-top: -10px;
  background: goldenrod;
  right: -2.5rem;
}


/****ETAPE 12 ****/


section.section-footer {
  align-items: center;
  /* justify-content: center; */
  margin-top: 0px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
}

.square-footer.center-footer {
  align-items: center;
}

h5 {
  font-size: 22px;
  font-family: 'dancing script';
  color: goldenrod;
}

.square-footer img {
  width: 40%;
}


.square-footer {
  display: flex;
  flex-direction: column;
  /* flex-wrap: wrap; */
  height: 120px;

}

.square-footer a {
  color: #fff;
}

.square-footer p {
  text-align: left;
  color: #fff;
  font-size: 1rem;
}

img.ft {
  width: 80%;
}

.square-footer.photo {
  background: url(https://assets.codepen.io/2045819/exterieur-lebillot.PNG) no-repeat;
  width: 15%;
  background-size: cover;
  margin-bottom: 2rem;

}

/****ETAPE 13 ******/

section.section-subfooter {
  background: goldenrod;
  height: 50px;
  grid-template-columns: 1fr 1fr;
  display: flex;
  justify-content: space-around;
  align-items: center;
}



@media (max-width: 768px) {
  section.hero {

    height: 40vh !important;
    background-attachment: inherit;

  }

  .menu-responsive {
    display: block !important;
    float: right;
    right: 2rem;
    position: absolute;
    font-size: 2rem;
  }

  .square0A {
    width: 100%;
    margin-top: 0px;
    justify-content: flex-start;
    display: none;
  }

  .square0 {
    width: 100%;
    margin-top: 0px;
    justify-content: flex-start;
    margin-left: 0rem;
  }

  section.section.venir {

    grid-template-columns: 1fr !important;
  }

  .square.squarevenirimage {
    left: 0rem !important;
  }

  .square.squarevenirbordure {
    display: none;
  }

  .square.squarevenirtext {

    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    height: 93vh !important;

  }


  section.section.apropos {

    grid-template-columns: 1fr !important;
    height: 75vh;
  }

  .square.square2image {
    left: 0rem !important;
    display: none;
  }

  .square.square2border {
    display: none;
  }

  .square.square2text {

    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    height: 93vh !important;

  }

  .owl-carousel .owl-item img {
    display: block;
    width: 50% !important;
    align-items: center;
    justify-content: center;
    margin: auto;
  }

  .slider-content {
    margin-top: 14rem !important;
  }

  section.section.venir {

    margin-top: -79px;

    height: 190vh !important;

  }

  section.generateurderecette {

    grid-template-columns: 1fr !important;
  }

  section.section.presentation {
    grid-template-columns: 1fr !important;
    overflow: scroll;
  }

  .squaregenerateurderecetteimage {
    height: 90vh;
    position: relative;
    right: 0rem;
    top: 5rem;
    overflow: hidden;
  }

  .square.squaregenerateurderecettebordure {
    display: none;
  }

  .square.squaregenerateurderecettetexte {
    margin-top: 0rem;
  }

  .btn.download {

    width: 100%;

  }

  .btn-contact {
    width: 100%;
  }

  .scroll-downs {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* margin: auto; */
    width: 34px;
    height: 55px;
    margin: -16px auto;
  }

  section.slider-content.bis {
    margin-top: 30rem !important;
  }


  video {
    width: 80%;
    margin-top: 50%;
  }

  .parallax {
    display: none !important;
  }

  .parallax-bis {
    background-image: url(https://boucherie-lebillot.fr/img/bg-video.png);
    height: 300px;
    background-attachment: unset;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 7rem;
    color: #400101;
  }

  .squarevenirimage {
    background: url(https://assets.codepen.io/2045819/billot-team.png) no-repeat;
    height: 90vh;
    position: relative;
    /* right: -7rem; */
    top: 0rem !important;
  }

  section.slider-content.mt-15 {
    margin-top: 35rem !important;
  }

  section.title {
    background: #181a19;
    position: absolute;
    margin-top: 30rem;
    margin-left: 1rem;
    font-family: 'Dancing Script';
    color: #d7a21f;
  }

  section.section-footer {
    DISPLAY: block;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    text-align: center;

  }

  .square-footer p {
    text-align: center;
    color: #fff;
    font-size: 1rem;
  }

  .square-footer.photo {
    background: url(https://assets.codepen.io/2045819/exterieur-lebillot.PNG) no-repeat;
    width: 100%;
    background-size: cover;
    text-align: center;
    margin: auto;
  }

  section.section-subfooter {
    background: goldenrod;
    height: 50px;

    display: block;
    justify-content: space-around;
    align-items: center;
  }
}