.new-header {
  /* background-color: #ddd; */
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: -1;
}
.new-header img {
  width: 50%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.new-header_content {
  position: relative;
  align-self: flex-end;
  padding: 3rem 1rem;
  width: 50%;
}

.new-header_content:before {
  position: absolute;
  right: 0;
  top: 0;
  width: 130%;
  height: 100%;
  content: '';
  background-color: #bc0d24;
  z-index: 0;
  clip-path: polygon(23% 0, 100% 0, 100% 100%, 0% 100%);
}
.new-header .new-header_title {
  color: white;
  font-style: normal;
  font-size: 2rem;
  text-align: center;
  display: block;
}
.new-header .new-header_text {
  margin: 0;
  position: relative;
  color: white;
  text-transform: uppercase;
  text-align: center;
}
.new-header .new-header_title:before {
  display: none;
}

/* CATEGORIE BLOCKS */

.boutique-cat-blocks {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media all and (min-width: 450px) {
  .boutique-cat-blocks {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

.boutique-cat-blocks article {
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
}

.boutique-cat-blocks article header {
  display: grid;
}
.boutique-cat-blocks article header h3 {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  position: relative;
  z-index: 2;
  align-self: flex-end;
  justify-self: center;
  /* background-color: white; */
  /* padding: 1rem; */
  background-color: rgb(255 255 255 / 60%);
  padding: 0.5rem !important;
  margin: 0 0 1rem 0;
  max-width: fit-content;
  min-height: auto !important;
  border-radius: 0.5rem;
}
.boutique-cat-blocks article header h3 a {
  text-decoration: none;
}
.boutique-cat-blocks article header h3:hover a {
  text-decoration: underline;
  color:black;
}
/*.boutique-cat-blocks article header h3:hover {*/
/*  border:1px solid transparent;*/
/*}*/
.boutique-cat-blocks article header img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  position: relative;
  z-index: 1;
}

.boutique-cat-blocks article ul {
  margin: 0;
  padding: 2rem 1rem;
  list-style: none;
}

.boutique-cat-blocks article ul a {
  font-weight: 400;
  color: #373737;
  font-family: 'Roboto', Sans-serif;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.boutique-cat-blocks article ul a:before {
  content: '';
  width: 1rem;
  height: 2px;
  background-color: #bc0d24;
  display: inline-block;
  transform: scaleX(0.3) translateY(0.9rem);
  transition: transform 0.25s ease-in-out;
  transform-origin: left center;
}

.boutique-cat-blocks article ul a:hover:before {
  transform: scaleX(1) translateY(0.9rem);
}

.boutique-cat-blocks article footer {
  margin-top: auto;
}

.boutique-cat-blocks article footer a {
  background-color: #bc0d24;
  padding: 1rem;
  display: flex;
  justify-content: center;
  color: white;
  font-weight: 400;
  font-family: 'Roboto', Sans-serif;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  transition:all .25s ease-in-out
}

.boutique-cat-blocks article footer a:hover {
  background-color: black;
  color: white;
  opacity: 0.9;
}

/* SEO text block*/

.boutique-seo-text-block {
  margin: 3rem auto;
  font-size: 1.2rem;
  text-align: center;
  max-width: 75ch;
  padding: 2rem;
  background-color: #f9f9f9;
}
.boutique-seo-text-block > ul {
  display:grid;
  gap: 1rem;
  list-style: none;
}

@media all and (min-width:550px){
  .boutique-seo-text-block > ul {
   
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.boutique-seo-text-block > ul li {
  padding: 1.5rem;
  background-color:white;
  text-transform:uppercase;
  font-weight:bold;
  border:1px solid #ddd;
  display: grid;
gap: 1rem;
}
.boutique-seo-text-block > ul li i {
  font-size: 2rem;
}
.boutique-seo-text-block > ul {
  margin: 1rem 0;
  padding: 1rem;
}



.boutique-seo-text-block ul li ul {
  margin: 0;
  padding: 0;
}

#suggestLayer.dropdown-menu, #menuLoggedIn.dropdown-menu{
    z-index: 1200;
}
