/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./app/Components/PresentationProduit/style.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* mobile */
.presentation-produit {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  grid-template-rows: auto 1fr;
}
.presentation-produit .presentation-carousel {
  display: flex;
  justify-content: center;
}
.presentation-produit .presentation-description h3 {
  text-transform: uppercase;
}

/* laptop */
@media screen and (min-width: 60rem) {
  .presentation-produit {
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    width: 100%;
    gap: 45px;
  }
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./app/Components/Caroussel/style.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/** ********************************************************
 * RESPONSIVE default to mobile
 */
/** * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * carousel orientation : default to vertical
 */
.carousel-section {
  overflow: hidden;
  display: flex;
  position: relative;
  /** * * * * * * * * * * * * * * * * * * * * * * * * * * * *
   * carousel orientation : horizontal
   */
}
.carousel-section .carousel-slides {
  width: 100%;
  margin: auto;
  display: grid;
  grid-gap: 0px;
  gap: 0px;
  scroll-behavior: smooth;
  /* Hide scrollbar */
  scrollbar-width: none; /* for Firefox, Safari 18.2+, and Chromium 121+ */
  -ms-overflow-style: none; /* for IE 10+, and Edge */
  /* -> VERTICAL SPECIFIC */
  height: 500px;
  grid-auto-flow: row;
  grid-auto-rows: 100%; /* ensure each grid children is 100% height */
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}
.carousel-section .carousel-slides::-webkit-scrollbar {
  display: none; /* for older Chromium and Safari, and Opera */
}
.carousel-section .carousel-slides .carousel-item {
  /* -> VERTICAL SPECIFIC */
  height: 100%;
  cursor: crosshair;
  width: 100%;
  overflow: hidden;
  scroll-snap-align: center;
}
.carousel-section .carousel-slides .carousel-item .carousel-image {
  /* -> VERTICAL SPECIFIC */
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: center top;
}
.carousel-section .carousel-navigation {
  display: flex;
  justify-content: center;
  position: absolute;
  /* -> VERTICAL SPECIFIC */
  flex-direction: column;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  left: auto;
}
.carousel-section .carousel-navigation .nav-button {
  /* -> VERTICAL SPECIFIC */
  width: 2px;
  height: 25px;
  margin: 4px 0;
  border-radius: 20%;
  border: none;
  background-color: #000;
  cursor: pointer;
  /* Increase clickable area */
  padding: 0 10px; /* -> VERTICAL SPECIFIC */
  box-sizing: content-box; /* ensures padding doesn't affect the visual size */
  background-clip: content-box; /* background only covers the content box (not padding) */
}
.carousel-section .carousel-navigation .nav-button.active {
  background-color: #ccc;
}
.carousel-section .carousel-navigation .nav-image {
  display: none;
}
.carousel-section.carousel-orientation-horizontal {
  width: 500px;
  max-width: 90vw;
}
.carousel-section.carousel-orientation-horizontal .carousel-slides {
  grid-auto-flow: column;
  grid-auto-columns: 100%; /* ensure each grid children is 100% width */
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  height: auto;
}
.carousel-section.carousel-orientation-horizontal .carousel-slides .carousel-item {
  height: auto;
}
.carousel-section.carousel-orientation-horizontal .carousel-slides .carousel-item .carousel-image {
  height: auto;
  width: 100%;
}
.carousel-section.carousel-orientation-horizontal .carousel-navigation {
  flex-direction: row;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  top: auto;
}
.carousel-section.carousel-orientation-horizontal .carousel-navigation .nav-button {
  width: 25px;
  height: 2px;
  margin: 0 4px;
  /* Increase clickable area */
  padding: 10px 0;
}

/** ********************************************************
 * RESPONSIVE for big screen
 */
/** * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * carousel orientation : default to vertical
 */
@media screen and (min-width: 60rem) {
  .carousel-section {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 10px;
    gap: 10px;
    /** * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * carousel orientation : horizontal
     */
  }
  .carousel-section .carousel-navigation {
    justify-content: flex-end;
    max-width: 65px;
    height: 100%;
    grid-column-start: 1;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }
  .carousel-section .carousel-navigation .nav-button {
    display: none;
  }
  .carousel-section .carousel-navigation .nav-image {
    display: flex;
    max-width: 100%;
    border: 1px solid #d1d1d6;
    margin-top: 8px;
    opacity: 0.5;
    background-color: transparent;
    cursor: pointer;
  }
  .carousel-section .carousel-navigation .nav-image.active, .carousel-section .carousel-navigation .nav-image:hover {
    border-color: #1e1e1e;
    opacity: 1;
  }
  .carousel-section.carousel-orientation-horizontal {
    grid-auto-flow: row;
  }
  .carousel-section.carousel-orientation-horizontal .carousel-navigation {
    left: 0;
    transform: translateX(0%);
    max-width: 300px;
    gap: 10px;
  }
}
/** ********************************************************
 * ENLARGED view
 */
/*
 * Prevent the background from scrolling when the enlarged view is active.
 * Applying these styles to the <html> element is more robust than
 * applying them to the <body>, as it prevents the "jump to top" issue.
 */
html:has(.enlarged-view) {
  overflow: hidden;
}

.enlarged-view {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background-color: white;
  padding: 10px;
}
.enlarged-view .close-button {
  display: block;
  margin-left: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 50px;
  font-weight: 200;
}
.enlarged-view .image-container {
  min-height: 0; /* This is crucial for flex items to shrink properly below their content size */
  cursor: zoom-in;
}
.enlarged-view .image-container .enlarged-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.enlarged-view #enlarged-image-checkbox:checked ~ .image-container {
  cursor: zoom-out;
  overflow: scroll;
}
.enlarged-view #enlarged-image-checkbox:checked ~ .image-container .enlarged-image {
  width: auto;
  height: auto;
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./app/Prestations/Betons/style.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
h2 {
  margin: 1rem auto 2rem auto;
  text-align: center;
}
@media screen and (min-width: 60rem) {
  h2 {
    margin: 0rem auto 4rem auto;
  }
}

.intro_beton {
  width: 95%;
  margin: 2rem auto 2rem auto;
  letter-spacing: 0rem;
  line-height: 1.6rem;
  font-size: 0.9rem;
  text-align: justify;
}
@media screen and (min-width: 60rem) {
  .intro_beton {
    width: 50%;
    margin: 4rem auto 4rem auto;
    text-align: justify;
    font-size: 1rem;
  }
}

.all_sections {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 97%;
  margin: auto;
  gap: 50px;
}
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./app/Components/LinkForm/style.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.link {
  display: block;
  text-align: center;
  margin: 4rem auto 4rem auto;
  font-size: 0.9rem;
  padding: 5rem;
}
@media screen and (min-width: 60rem) {
  .link {
    font-size: 1rem;
    margin: 4rem auto 8rem auto;
  }
}
.link .button {
  padding: 1rem 1.3rem;
  border-radius: 0.2rem;
  background-color: rgb(241, 238, 233);
}
/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./app/Prestations/Betons/BetonCireClassic/index.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./app/Prestations/Betons/BetonCireFerre/index.scss ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./app/Prestations/Betons/BetonCireMineral/index.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

