p {
  margin: 0px;
}

.dropdown p {
  font-size: 15px;
}

/*
Layout
*/
.grid-equipment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;

}
.dropdown-content {
  max-height: 0;
  overflow-y: hidden;
  transition: max-height 0.3s ease-in-out;
  opacity: 0;
}

.dropdown-content.active {
  opacity: 1;
}
.flex_justify-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  min-height: 45px;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}


.slider-widget .slider-nav-container .slider-nav{
  border: 1px solid white;
} 
/* 
.flex-row_description {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;  
  gap: 1em;
} */

.flex-row_description {
  display: flex;
  gap: 1.5em;
}

.slider {
  display: flex;
  gap: 1em;
  align-items: center;
}


/*
components
*/
.w-96 {
  width: 96%;
}
.slider-nav-container .slider-nav{
  border: 1px solid black;
}

.icon-text {
  width: 35px;
  height: 35px;
  object-fit: contain;
  margin-right: 10px;
}

.icon-text_title {
  font-size: 15px;
}

.dropdown-content {
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
}

.dropdown-container {
  border-bottom: 1px solid #313131;
}

/* .dropdown{
  border-top: 1px solid black;
} */
.titre-maison {
  font-family: "din-condensed", Sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 0px;
  color: #313131;
}

.border-b {
  border-bottom: 1px solid #313131;
  padding-bottom: 10px;
}

.typologie-title {
  font-size: 15px;
  width: 200px;
  font-weight: 400;
}

.border-equipment {
  border: 1px solid white;
  border-radius: 12px;
  padding: 20px;
  height: 70px;
  color: white;
}

.w-item p {
  line-height: normal;
}
.w-item{
  padding-top: 5px;
    padding-bottom: 5px;
  width: 200px;
}




/*
SLIDER
*/
.title-slider {
  text-transform: uppercase;
  font-family: "din-condensed", Sans-serif;
  font-size: 27px;
  font-weight: bold;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 0px;
}

.slider {
  display: flex;
  overflow-y: hidden;
  gap: 1em;
  align-items: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  padding: 1em 0;
  scroll-snap-type: x mandatory;
}

.slider::-webkit-scrollbar {
  display: none;
}

.voir-plus-container {
  text-align: center;
}

.voir-plus-btn {
  background-color: #3D1511 !important;
  font-family: "din-condensed", Sans-serif !important;
  color: white !important;
  font-size: 20px !important;
  border: 1px solid #3D1511;
}

.voir-plus-btn:hover {
  background-color: transparent !important;
  color: #3D1511 !important;
  border: 1px solid #3D1511;
}

.additional-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  opacity: 0;
  transform: translateY(-20px);
}

.additional-content.open {
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
  overflow: visible
}

.voir-plus-btn {
  transition: all 0.3s ease;
}

.voir-plus-btn.active {
  background-color: #f5f5f5;
}

.slider {
  display: flex;
  gap: 1em;
  align-items: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  padding: 1em 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.img-slider {
  height: 400px !important;
  min-width: 200px;
  width: auto;
  max-width: 100vw !important;
  object-fit: contain;
  flex-shrink: 0;
  scroll-snap-align: center;
  border-radius: 20px !important;
}


.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  border: 1px solid #93928E;
  outline: none;
  transition: all 0.3s;
  z-index: 10;
}

.arrow-slider {
  width: 25px;
  height: 25px;

}


.prev-btn {
  left: -50px;
}

.next-btn {
  right: -50px;
}

.rotate-180 {
  transform: rotate(180deg);
}

.slider-nav_dropdown {
  border-color: #313131 !important;
}

@media screen and (min-width: 1024px) {
  .slider-nav_dropdown:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }

}

@media screen and (max-width: 1200px) {
  .flex_justify-between {

    min-height: 20px;
  }
  .flex-row_description {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
  }

  .dropdown-container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .icon-text_title {
    font-size: 14px;
  }

  .voir-plus-btn {
    font-size: 18px !important;
  }

  .title-slider {
    font-size: 24px;
  }

  .titre-maison {
    font-size: 20px;
    margin-top: 20px;
  }

  .img-slider {
    object-fit: cover;
    width: auto;
    height: inherit !important;
    min-width: auto !important;
    height: 36vh !important;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .slider-container {
    padding: 0px 0px;
  }


  .slider {
    height: 40vh;
    margin: 10px 0px
  }

  .slider-nav-container {
    width: 100%;
    display: flex;
    justify-content: end;
  }

  .slider-nav {
    position: inherit;
  }

  .prev-btn {
    margin-top: 38px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .title-slider {
    font-size: 20px;
  }
}