@font-face {
  font-family: "markpro_medium";
  src: url("../fonts/MarkPro-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "markpro_bold";
  src: url("../fonts/MarkPro-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "markpro_regular";
  src: url("../fonts/MarkPro.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "markpro_light";
  src: url("../fonts/MarkPro-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "markpro_book";
  src: url("../fonts/MarkPro-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "markpro_heavy_iItalic";
  src: url("../fonts/MarkPro-HeavyItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "markpro_heavy";
  src: url("../fonts/MarkPro-Heavy.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "town10_black";
  src: url("../fonts/Jason-Vandenberg-Town-10-Display-Black.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

/******* Fonts Import Start **********/

@font-face {
  font-family: "Roboto";
  src: url("https://fonts.googleapis.com/css2?family=Roboto") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

ul {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/*------------    header    -----------*/

header {
  padding-top: 30px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgb(0 0 0 / 35%) 100%
  );
  position: absolute;
  top: 0;
  width: 100%;
}

.nav_header li {
  display: inline-block;
  margin-right: 30px;
}

.nav_header li:last-child {
  margin-right: 0;
}

.nav_header a {
  font-family: "town10_black";
  font-size: 17px;
  color: #fff;
  display: inline-block;
  border-bottom: 3px solid transparent;
  transition: all 0.4s ease;
}

.nav_header a:hover {
  border-bottom: 3px solid #f37a1f;
  transition: all 0.4s ease;
}

.nav_header_select {
  border-bottom: 3px solid #f37a1f !important;
}

.menu_header {
  display: none;
}

.form_search input {
  position: relative;
  font-family: markpro_regular;
  font-size: 24px;
  color: #c8c8c8;
  width: 90%;
  border: 0;
  height: 50px;
  outline: none;
  background: #312f2f;
  border: 0;
}

.search_input {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 2px solid #fff;
}

.search_input input {
  width: 88%;
  font-family: "markpro_medium";
  font-size: 16px;
  color: #fff;
  background: transparent;
  border: 0;
  padding-right: 8px;
}

.search_input input::placeholder {
  color: #fff;
  font-size: 16px;
}

.loupe {
  display: none;
}

.modal-backdrop {
  position: initial;
  background-color: #000;
}

.modal-content {
  background-color: #312f2f;
}

.modal-fullscreen .modal-content {
  height: 13%;
  border: 0;
}

.modal-body {
  padding: 20px 50px;
}

.form_search {
  position: relative;
}

.form_search input::placeholder {
  color: #fff;
}

.form_search button {
  background: transparent;
  outline: none;
  border: 0;
  right: 0;
  padding-top: 10px;
  position: absolute;
  padding-left: 10px;
}

/* menu */

#hamburger {
  cursor: pointer;
}

.bar {
  display: block;
  width: 40px;
  height: 5px;
  margin-top: 6px;
  background: #f37a1f;
  transition: 0.25s;
  -webkit-transition: 0.25s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.animate .bar:nth-child(1) {
  transform: translateY(0px) rotate(135deg);
}

.animate .bar:nth-child(2) {
  opacity: 0;
}

.animate .bar:nth-child(3) {
  transform: translateY(-22px) rotate(-135deg);
}

.conetnu_menu {
  transform: translatex(-100%);
  transition: transform 0.4s ease-in-out;
  background: #3e3e3e;
  padding: 50px;
  position: fixed;
  top: 0px;
  left: 0;
  height: 100vh;
  z-index: 9;
  width: 100%;
  overflow-y: auto;
  text-align: center;
  display: flex;
  align-items: center;
}

.selected {
  transform: translatex(0);
}

.conetnu_menu a {
  font-family: "town10_black";
  color: #ffffff;
  font-size: 30px;
  padding-bottom: 10px;
}

.conetnu_menu a:hover {
  border-bottom: 4px solid #e20917;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
}

.conetnu_menu li:first-child a:hover {
  border-bottom: none;
}

.conetnu_menu li {
  margin-bottom: 35px;
}

@media (max-width: 991px) {
  .nav_respo {
    display: none;
  }

  .menu_header {
    display: block;
  }

  .animate {
    position: fixed;
    right: 90px;
    top: 10%;
    z-index: 999;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .nav_header li {
    margin-right: 17px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .nav_header {
    padding-left: 20px;
  }

  .nav_header a {
    font-size: 13px;
  }

  .nav_header li {
    margin-right: 14px;
  }

  .search_input input::placeholder {
    color: #fff;
    font-size: 12px;
  }

  .search_input img {
    width: 11%;
  }
}

@media (max-width: 575px) {
  .conetnu_menu {
    text-align: left;
    padding-left: 20px !important;
  }

  .conetnu_menu a {
    font-size: 20px;
  }

  .animate {
    position: fixed;
    right: 5%;
    top: 17%;
    z-index: 999;
  }
}

/*------------    footer    -----------*/

.newsletter {
  background-color: #f37a1f;
}

.content_newsletter h2 {
  font-family: "town10_black";
  font-size: 32px;
  color: #fff;
  margin-bottom: 25px;
}

.content_newsletter p {
  font-family: "markpro_medium";
  font-size: 20px;
  color: #fff;
  margin-bottom: 25px;
}

.content_newsletter span {
  display: block;
}

.form_newsletter label {
  font-family: "markpro_regular";
  font-size: 25px;
  color: #fff;
  margin-bottom: 25px;
}

.form_newsletter label span {
  color: #ffb502;
}

.vousetes label {
  font-family: "markpro_regular";
  font-size: 21px;
  color: #fff;
  padding: 16px 20px;
  margin-bottom: 30px;
  width: 49%;
  border: solid 1px white;
  cursor: pointer;
  justify-content: space-around;
}

#newsletterpublic_typeinscri {
  display: flex;
  justify-content: space-between;
}

.vousetes label:hover {
  font-family: "markpro_bold";
  font-size: 24px;
  color: #f37a1f;
  border: solid 1px white;
  background-color: #fff;
}

.vousetes input[type="radio"] {
  opacity: 0;
  display: none;
}

.vousetes input:checked + label {
  color: #f37a1f;
  font-family: "markpro_bold";
  font-size: 24px;
  background-color: #fff;
}

.newsletter_send {
  font-family: "markpro_book";
  font-size: 18px;
  display: flex;
  color: #fff;
  border: none;
  background: #ffb502;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.newsletter_send img {
  margin-right: 10px;
}

/*
.vousetes_select {
    background-color: #ffb502;
}
*/

.form_newsletter p {
  font-family: "markpro_regular";
  font-size: 16px;
  color: #fff;
}

.form_newsletter p span {
  color: #ffb502;
}

input.inputemail:-internal-autofill-selected,
.form_newsletter input.inputemail {
  width: 100%;
  font-family: "markpro_regular";
  font-size: 16px;
  color: #fff;
  height: 50px;
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #ffb502;
  padding-bottom: 16px;
  outline: none;
}

.form_newsletter input.inputemail:placeholder {
  font-family: "markpro_light";
}

.form_newsletter input::placeholder {
  color: #fff;
}

.footer {
  background: #ffffff;
  padding: 80px 0;
}

.logo_footer {
  text-align: center;
}

.menu_footer {
  margin: 60px 0;
}

.menu_footer ul,
.footer_bottom ul {
  text-align: center;
}

.menu_footer ul li,
.footer_bottom ul li {
  display: inline-block;
  margin-left: 60px;
  margin-bottom: 15px;
}

.menu_footer ul li:first-child,
.footer_bottom ul li:first-child {
  margin-left: 0;
}

.menu_footer ul li a {
  font-family: "markpro_bold";
  font-size: 18px;
  color: #515151;
}

.footer_bottom ul li {
  font-family: "markpro_medium";
  font-size: 15px;
  color: #a2a2a2;
  margin-left: 80px;
}

.footer_bottom ul li a:first-child {
  margin-left: 20px;
}

.footer_bottom ul li a {
  margin-left: 10px;
}

.sub_footer img {
  margin-left: 5px;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  display: inline-block;
}

.sub_footer img:hover {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .item_head_red li:last-child {
    padding: 0 90px;
  }
}

@media (max-width: 991px) {
  .item_head_red li:last-child {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .line_footer::before {
    display: none;
  }

  .menu_footer ul li {
    display: block;
    margin-left: 0;
    margin-bottom: 30px;
  }

  .footer_bottom ul li {
    margin-left: 0;
  }
}

/* ------------- SWITCHER ----------------*/

.switcher {
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgb(0 0 0 / 50%) 60%
    ),
    var(--url_switcher) no-repeat;
  background-size: cover;
  background-position: center;
}

.content_switcher h1 {
  font-family: "town10_black";
  font-size: 3vmax;
  color: #fff;
  padding: 13vmax 0;
}

@media (max-width: 767px) {
  .content_switcher h1 {
    padding: 120px 0 70px;
  }
}

/*--------------- Switcher Home --------------*/

.switcher_home {
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgb(0 0 0 / 50%) 60%
    ),
    var(--url_switcher) no-repeat;
  background-size: cover;
  background-position: center;
}

.content_switcher_home h1 {
  font-family: "town10_black";
  font-size: 64px;
  color: #f37a1f;
  margin-bottom: 40px;
  line-height: 63px;
}

.content_switcher_home h1 span {
  display: block;
  color: #fff;
}

.content_switcher_home p {
  font-family: "markpro_medium";
  color: #ffffff;
  font-size: 23px;
  margin-bottom: 55px;
}

.content_switcher_home a {
  font-family: "markpro_medium";
  color: #ffffff;
  font-size: 20px;
  background-color: #f37a1f;
  padding: 20px 100px 20px 55px;
  position: relative;
}

.content_switcher_home a::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 20px;
  background: url("../images/right-switcher.png") no-repeat;
  width: 46px;
  height: 17px;
}

.block_content_switcher {
  padding: 350px 0;
}

@media (max-width: 767px) {
  .content_switcher_home h1 {
    font-size: 44px;
    line-height: 43px;
  }

  .content_switcher_home a {
    font-size: 16px;
  }
}

/* -------- HOME PAGE ---------*/

.header_title_div h2 {
  font-family: "markpro_bold";
  color: #2d2d2d;
  font-size: 33px;
  padding-bottom: 25px;
}

.line_title {
  background-color: #f37a1f;
  height: 3px;
  width: 120px;
}

.item_offer {
  height: 50%;
}

.item_offer:first-child {
  padding-bottom: 13px;
}
/* 
.content_first_item_offer {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    margin: auto;
    height: 100%;
    padding-top: 67px;
    text-align: right;
    justify-content: flex-end;
    align-items: flex-start;
    background: #00000040;
    top: 0;
}

.content_first_item_offer label {
    font-family: "town10_black";
    font-size: 20px;
    color: #fff;
    padding: 16px 20px;
    margin-bottom: 16px;
}

.content_first_item_offer h3 {
    font-family: "town10_black";
    font-size: 60px;
    color: #fff;
}

.content_first_item_offer label span {
    display: block;
    font-size: 40px;
}

.content_first_item_offer span {
    display: block;
    font-size: 20px;
}

.content_first_item_offer p {
    font-family: "markpro_medium";
    font-size: 12px;
    color: #fff;
} */

.content_item_offer {
  position: absolute;
  left: 6%;
  top: 30%;
}

.style_item_offer1 {
  position: absolute;
  left: 6%;
  top: 15%;
}

.content_item_offer h3 {
  font-family: "town10_black";
  font-size: 40px;
  color: #fff;
  margin-bottom: 16px;
}

.content_item_offer span {
  display: block;
  font-size: 20px;
}

.content_item_offer a {
  font-family: "markpro_medium";
  color: #ffffff;
  font-size: 14px;
  background-color: #f37a1f;
  padding: 12px 55px 12px 16px;
  position: relative;
}

/* .content_first_item_offer a {
    font-family: "markpro_medium";
    color: #ffffff;
    font-size: 14px;
    background-color: #f37a1f;
    padding: 12px 55px 12px 16px;
    position: absolute;
    right: 20px;
    top: 180px;
}

.content_first_item_offer a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 19px;
    background: url("../images/right-offer.png") no-repeat;
    width: 46px;
    height: 17px;
} */

.content_item_offer a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 14px;
  background: url("../images/right-offer.png") no-repeat;
  width: 46px;
  height: 17px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .content_item_offer span {
    font-size: 16px;
  }

  .content_item_offer h3 {
    font-size: 30px;
  }

  .content_item_offer a::after {
    right: -16px;
  }

  .content_item_offer a {
    font-size: 12px;
    padding: 12px 35px 12px 16px;
  }

  .content_first_item_offer {
    top: 3%;
  }

  .content_first_item_offer p {
  }
}

@media (max-width: 992px) {
  .style_item_offer1 {
    top: 20%;
  }

  .content_first_item_offer p {
  }
}

@media (max-width: 575px) {
  .content_first_item_offer label {
    font-size: 10px;
    padding: 10px 16px;
    margin-bottom: 8px;
  }

  .content_first_item_offer span {
    font-size: 14px;
  }

  .content_first_item_offer h3 {
    font-size: 30px;
  }

  .content_first_item_offer p {
  }

  .content_first_item_offer {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    margin: auto;
    height: 100%;
    padding-top: 0;
    text-align: right;
    justify-content: flex-end;
    align-items: flex-start;
    background: #00000040;
    top: 0;
  }

  .style_item_offer1 {
    top: 8%;
  }
}

@media (max-width: 400px) {
  .content_first_item_offer p {
  }

  .content_item_offer span {
    font-size: 14px;
  }

  .content_item_offer h3 {
    font-size: 28px;
    margin-bottom: 4px;
  }

  .content_item_offer {
    position: absolute;
    left: 6%;
    top: 20%;
  }

  .content_item_offer a {
    font-size: 12px;
    padding: 10px 40px 9px 14px;
  }

  .content_item_offer a::after {
    right: -14px;
    top: 12px;
  }
}

/* category div */

.item_category {
  margin-bottom: 25px;
}

.img_item_category {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  margin-bottom: 35px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.img_item_category img {
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  display: block;
  position: relative;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.item_category:hover img {
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.title_item_category a {
  font-family: "markpro_regular";
  color: #7b7b7b;
  font-size: 22px;
  position: relative;
}

.title_item_category a:first-child {
  display: block;
  /*max-width: 170px;*/
  margin-right: 20px;
  line-height: 25px;
}

.item_category:hover .title_item_category a {
  color: #f37a1f;
  font-weight: bold;
}

.title_item_category {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
}

.category .owl-carousel .owl-item img {
  display: block;
  width: auto;
}

.category .owl-carousel .owl-nav button.owl-prev {
  background-color: #f37a1f;
  padding: 7px 24px 11px !important;
  margin-right: 8px;
}

button.owl-prev:hover,
button.owl-next:hover {
  background-color: #de5f00 !important;
}

.category .owl-carousel .owl-nav button.owl-next {
  background-color: #f37a1f;
  padding: 7px 24px 11px !important;
}

.category .owl-carousel .owl-nav {
  position: absolute;
  top: -116px;
  right: 0;
}

@media (max-width: 575px) {
  .category .owl-carousel .owl-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    text-align: center;
    display: block !important;
  }
}

/* produit div */

.header_title_div_style2 h2 {
  font-family: "markpro_bold";
  color: #2d2d2d;
  font-size: 33px;
  padding-bottom: 25px;
}

.header_title_div_style2 {
  display: flex;
  align-items: center;
}

.header_title_div_style2 a {
  padding-bottom: 25px;
  padding-left: 25px;
  font-family: "markpro_regular";
  color: #f37a1f;
  font-size: 19px;
}

.item_produit_home {
  margin-bottom: 20px;
}

.content_item_produit_home {
}

.item_produit_home label {
  font-family: "markpro_regular";
  color: #949494;
  font-size: 15px;
}

.item_produit_home h4 {
  font-family: "town10_black";
  color: #2b2b2b;
  font-size: 19px;
  margin-bottom: 12px;
}

.item_produit_home p {
  font-family: "markpro_bold";
  color: #f37a1f;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.item_produit_home .promo .prixpromo {
  font-family: "markpro_bold";
  color: #7a7a7a;
  font-size: 15px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.item_produit_home .promo .prixpromo::after {
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  height: 2px;
  background: #7a7a7a;
  position: absolute;
  bottom: 0;
  margin: auto;
  transform: rotate(4deg);
}

.item_produit_home a {
  font-family: "markpro_bold";
  color: #fff;
  font-size: 15px;
  width: 100%;
  display: block;
  padding: 16px 0;
  background-color: #f37a1f;
}

.Voir_le_produit:hover {
  background-color: #de5f00;
}

.img_item_produit_home {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 316.5px;
}

.img_item_produit_home img {
  max-height: 316.5px;
}

.img_item_produit_home.img_item_produit_sous img {
  max-height: 316.5px;
}

.produits_home .owl-carousel .owl-item img {
  display: block;
  width: auto;
}

.produits_home .owl-carousel .owl-nav button.owl-prev {
  background-color: #f37a1f;
  padding: 7px 24px 11px !important;
  margin-right: 8px;
}

.produits_home .owl-carousel .owl-nav button.owl-next {
  background-color: #f37a1f;
  padding: 7px 24px 11px !important;
}

.produits_home .owl-carousel .owl-nav {
  position: absolute;
  top: -116px;
  right: 0;
}

@media (max-width: 767px) {
  .header_title_div_style2 a {
    padding-bottom: 0;
    max-width: 175px;
  }
}

@media (max-width: 575px) {
  .produits_home .owl-carousel .owl-nav {
    position: absolute;
    top: 96%;
    right: 0;
    left: 0;
    text-align: center;
    display: block !important;
  }
}

/* --------- La Marque Page ---------*/

.header_marque_page h4 {
  font-family: "town10_black";
  color: #2d2d2d;
  font-size: 40px;
  margin-bottom: 25px;
}

.header_marque_page span {
  display: block;
}

.header_marque_page label {
  font-family: "town10_black";
  color: #f37a1f;
  font-size: 23px;
  margin-bottom: 25px;
}

.header_marque_page p {
  font-family: "markpro_regular";
  color: #838383;
  font-size: 16px;
  margin-bottom: 50px;
  text-align: justify;
  text-align-last: center;
}

.contenu_block_marque h5 {
  font-family: "town10_black";
  color: #2d2d2d;
  font-size: 48px;
  margin-bottom: 30px;
  max-width: 500px;
}

.contenu_block_marque span {
  display: block;
  color: #f37a1f;
  font-size: 30px;
}

.contenu_block_marque p {
  font-family: "markpro_regular";
  color: #838383;
  font-size: 28px;
  margin-bottom: 50px;
  text-align: justify;
  margin-right: 25px;
}

.contenu_block_marque {
  margin-left: -70px;
}

.style2_block_marque {
  margin-left: 0;
}

.style3_block_marque {
  max-width: 90%;
  border-top: 1px solid #bebebe;
  padding-top: 40px;
  margin: auto;
}

@media (max-width: 1199px) {
  .contenu_block_marque {
    margin-left: 0px;
  }
}

@media (max-width: 575px) {
  .contenu_block_marque span {
    font-size: 20px;
  }

  .contenu_block_marque h5 {
    font-size: 25px;
  }

  .header_marque_page h4 {
    font-size: 22px;
  }

  .contenu_block_marque p {
    margin-right: 0;
  }
}

/* ----------------- Revondeur Page ----------------- */

#map_reseau {
  width: 100%;
  height: 900px;
  margin: 0px 0 50px;
}

.header_revendeurs p {
  font-family: "town10_black";
  color: #2d2d2d;
  font-size: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.img_bricoma {
  position: relative;
  top: 0;
  left: 6%;
}

table {
  width: 100%;
}

td,
th {
  text-align: center;
  padding: 20px 0;
}

td {
  font-family: "markpro_bold";
  color: #3e3e3e;
}

td:nth-child(1) {
  text-align: left;
  padding-left: 30px;
  font-family: "markpro_light";
}

th:nth-child(2),
th:nth-child(3) {
  font-family: "markpro_light";
  color: #fff;
  text-transform: uppercase;
  background-color: #ff6c00;
}

th:nth-child(2) {
  border-radius: 50px 0 0 0;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

.tableau_deux td {
  width: 50%;
}

@media (max-width: 1199px) {
  .tableau {
    overflow: scroll;
  }

  td,
  th {
    min-width: 250px;
  }
}

@media (max-width: 767px) {
  td:nth-child(1) {
    padding-left: 18px;
  }

  .header_revendeurs p {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  th:nth-child(2),
  th:nth-child(3) {
    font-size: 12px;
    padding-left: 12px;
  }
}

/* ------------- Category Page --------------*/

.list_categories li a {
  display: block;
  width: 100%;
  font-family: "markpro_regular";
  color: #838383;
  font-size: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #838383;
  margin-bottom: 35px;
}

.selcetd_list_category {
  font-family: "markpro_bold" !important;
  color: #f37a1f !important;
  font-size: 24px !important;
  border-bottom: 2px solid #f37a1f !important;
}

.nav_category_page_responsive {
  display: none;
}

.sous_category h2 {
  font-family: "town10_black";
  color: #000;
  font-size: 24px;
  padding-bottom: 8px;
}

.line_sous_category {
  background-color: #f37a1f;
  height: 5px;
  width: 40px;
}

.content_item_produit_sous label {
  font-family: "markpro_medium";
  color: #f37a1f;
  font-size: 13px;
}

.img_item_produit_sous {
  height: 250px;
}

.content_item_produit_sous a {
  background-color: transparent;
  padding: 0;
}

@media (max-width: 991px) {
  .list_categories {
    display: none;
  }

  .nav_category_page_responsive {
    display: block;
  }

  .items_nav_category_page_responsive select {
    border: none;
    border-bottom: 5px solid #f37a1f;
    padding-bottom: 20px;
    width: 100%;
    font-family: "markpro_bold";
    color: #f37a1f;
    font-size: 40px;
  }

  .items_nav_category_page_responsive select:focus-visible {
    outline: none;
  }
}

@media (max-width: 575px) {
  .items_nav_category_page_responsive select {
    font-size: 25px;
  }
}

/* -------- Liste Avantages Cat ---------*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.list_avantages {
  position: relative;
}
.list_avantages h2 {
  font-family: "town10_black";
  color: #000;
  font-size: 24px;
  padding-bottom: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.list_avantages ul {
  position: relative;
}
.list_avantages ul li {
  position: relative;
  font-weight: 600;
  left: 0;
  color: #212529;
  list-style: none;
  margin: 4px 0;
  border-left: 2px solid #f37a1f;
  transition: 0.5s;
  cursor: pointer;
}
.list_avantages ul li:hover {
  left: 10px;
}
.list_avantages ul li span {
  position: relative;
  padding: 8px;
  padding-left: 12px;
  display: inline-block;
  z-index: 1;
  transition: 0.5s;
}
.list_avantages ul li:hover span {
  color: #111;
}
.list_avantages ul li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f37a1f;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.5s;
}
.list_avantages ul li:hover:before {
  transform: scaleX(1);
}

/* ------------- Detail Produit ----------- */

.header_ariane p {
  font-family: "markpro_regular";
  color: #434343;
  font-size: 22px;
}

.header_ariane p a {
  font-family: "markpro_regular";
  color: #434343;
  font-size: 22px;
}

.preview_detail_produit label {
  font-family: "town10_black";
  color: #f37a1f;
  font-size: 24px;
}

.preview_detail_produit h3 {
  font-family: "town10_black";
  color: #434343;
  font-size: 43px;
  margin-bottom: 40px;
  margin-top: -8px;
}

.preview_detail_produit p {
  font-family: "markpro_regular";
  color: #434343;
  font-size: 16px;
  margin-bottom: 40px;
}

.call_to_produit {
  display: flex;
  align-items: center;
}

.call_to_produit a:first-child {
  font-family: "markpro_bold";
  color: #f37a1f;
  font-size: 15px;
  padding: 12px 40px;
  border: 1px solid #f37a1f;
  margin-right: 25px;
}

.call_to_produit a:first-child:hover {
  color: #fff;
  background-color: #f37a1f;
  transition: all 1s;
}

.call_to_produit a:last-child {
  font-family: "markpro_bold";
  background-color: #f37a1f;
  color: #fff;
  font-size: 15px;
  padding: 12px 40px;
}

.call_to_produit a:last-child:hover {
  font-family: "markpro_bold";
  background-color: #f37a1f;
  color: #fff;
  font-size: 15px;
  padding: 12px 40px;
}

.img_detail_prod {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img_detail_prod img {
  border: 2px solid #dcdcdc;
  height: 100%;
}

.tableau_carac {
  display: flex;
  justify-content: center;
}

.tableau_carac table {
  width: 80%;
}

.tableau_carac td:nth-child(1) {
  text-align: left;
  padding-left: 50px;
  font-family: "markpro_medium";
}

.tableau_carac td:nth-child(2) {
  padding-right: 50px;
}

.tableau_carac td {
  font-family: "markpro_regular";
  font-size: 18px;
  color: #2d2d2d;
}

.header_produit_similaires h2 {
  font-family: "town10_black";
  color: #f37a1f;
  font-size: 30px;
}

@media (max-width: 1199px) {
  .tableau_carac {
    overflow: scroll;
  }

  td,
  th {
    min-width: 250px;
  }
}

@media (max-width: 991px) {
  .img_detail_prod {
    margin-bottom: 60px;
  }

  .tableau_carac {
    display: block;
  }

  .tableau_carac table {
    width: 100%;
  }
}

@media (max-width: 767px) {
  td:nth-child(1) {
    padding-left: 18px;
  }
}

@media (max-width: 575px) {
  th:nth-child(2),
  th:nth-child(3) {
    font-size: 12px;
    padding-left: 12px;
  }

  .preview_detail_produit label {
    font-size: 18px;
  }

  .preview_detail_produit h3 {
    font-size: 30px;
  }

  .preview_detail_produit p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .call_to_produit a {
    font-size: 12px !important;
    padding: 10px 30px !important;
  }
}

/* ----------------- Formation Page ------------------------ */

.conetent_header_pages_formation p {
  font-family: "town10_black";
  color: #2d2d2d;
  font-size: 40px;
  text-align: center;
}

.itme_formation label {
  font-family: "town10_black";
  color: #f37a1f;
  font-size: 20px;
  margin-bottom: 16px;
}

.itme_formation h2 {
  font-family: "town10_black";
  color: #2d2d2d;
  font-size: 40px;
  margin-bottom: 50px;
}

.itme_formation p {
  font-family: "markpro_regular";
  color: #838383;
  font-size: 16px;
  margin-bottom: 50px;
}

.itme_formation a {
  font-family: "markpro_bold";
  color: #f37a1f;
  font-size: 16px;
  border: 2px solid #f37a1f;
  padding: 16px 40px;
}

.itme_formation a:hover {
  background-color: #f37a1f;
  color: #fff;
  transition: all 1s;
}

.itme_formation a:hover img {
  webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%)
    saturate(0%) hue-rotate(337deg) brightness(104%) contrast(103%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(337deg) brightness(104%) contrast(103%);
  transition: all 0.1s;
}

.itme_formation a img {
  padding-left: 16px;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  align-items: center;
}

.pagination .active h4 {
  font-family: "town10_black";
  background-color: #f37a1f;
  color: #fff;
  font-size: 20px;
}

.pagination h4 {
  font-family: "OpenSans-bold";
  font-size: 12px;
  color: #f37a1f;
  padding: 7px 12px;
}

.pagination a {
  font-family: "town10_black";
  font-size: 15px;
  color: #f37a1f;
  padding: 0 5px;
}

/* ------------ DETAIL formation -----------*/

.header_detail_actus label {
  font-family: "markpro_bold";
  font-size: 20px;
  color: #f37a1f;
  margin-bottom: 25px;
}

.header_detail_actus h2 {
  font-family: "markpro_medium";
  color: #3c3c3c;
  font-size: 49px;
  margin-bottom: 25px;
}

.content_detail_actus {
  min-height: 500px;
}

.content_detail_actus p {
  font-family: "markpro_regular";
  font-size: 20px;
  color: #2f2f2f;
  margin-bottom: 16px;
  text-align: justify;
}

.image_actu {
  float: left;
  padding-right: 25px;
  padding-bottom: 20px;
}

.galerie_formation label {
  font-family: "town10_black";
  color: #f37a1f;
  font-size: 40px;
}

.galerie_images img {
  height: 450px;
}
.categorie_home_galerie_images {
  display: flex;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
  position: relative;
}
.categorie_home_galerie_images:has(.vd_media)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgb(0 0 0 / 50%) 100%
  );
  pointer-events: none;
}
.categorie_home_galerie_images:has(.vd_media)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/play.png);
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45px;
}
@media (max-width: 767px) {
  .galerie_formation label {
    font-size: 25px;
    padding-bottom: 14px;
  }
}

@media (max-width: 575px) {
  .galerie_images img {
    height: 100%;
    min-height: 450px;
  }
}

/* ---------- Media Page -----------*/

.item_media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgb(0 0 0 / 50%) 100%
  );
  pointer-events: none;
}

.item_media label {
  position: absolute;
  bottom: 5%;
  left: 5%;
  font-family: "markpro_bold";
  color: #ffffff;
  font-size: 20px;
}

.item_media a:last-child {
  position: absolute;
  right: 0;
  left: 0;
  top: 40%;
  text-align: center;
  margin: 0 auto;
}

.item_document img {
  margin-bottom: 30px;
  border: 1px solid #f37a1f;
}

.item_document a {
  font-family: "markpro_bold";
  color: #ffffff;
  font-size: 15px;
  padding: 16px 20px;
  background-color: #f37a1f;
  display: block;
  width: fit-content;
}

.documents .item_document {
  margin-bottom: 50px;
}

.documents .item_document:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .item_media label {
    font-size: 18px;
  }

  .item_media a:last-child {
    top: 30%;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .documents {
    display: flex;
  }

  .item_document {
    text-align: center;
  }

  .item_document {
    text-align: center;
    padding: 0 25px;
  }
}

@media (max-width: 575px) {
  .item_document {
    text-align: center;
  }
}

/* ----------   Contact -------------*/

.alert-success {
  z-index: 99;
  position: relative;
  width: 50%;
}

.title_contact h2 {
  font-family: "town10_black";
  color: #f37a1f;
  font-size: 40px;
}

.text_input {
  margin-bottom: 45px;
}

.text_input input {
  font-family: "markpro_regular";
  font-size: 18px;
  color: #3c4a53;
  width: 100%;
  height: 50px;
  display: block;
  padding-left: 8px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #e5e5e5;
}

.text_input textarea {
  font-family: "markpro_regular";
  font-size: 18px;
  color: #212121;
  width: 100%;
  height: 180px;
  display: block;
  padding-top: 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  outline: none;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  font-family: "markpro_regular";
  font-size: 18px;
  letter-spacing: 2px;
  color: #3d3d3d;
}

.text_input i {
  font-family: "markpro_regular";
  font-size: 14px;
  color: #8f8f8f;
  padding-left: 20px;
}

.text_input_select {
  font-family: "markpro_regular";
  font-size: 18px;
  color: #5e5e5e;
  width: 100%;
  height: 50px;
  display: block;
  padding-left: 8px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #e5e5e5;
}

.submit_button {
  margin-top: 25px;
}

.submit_button button {
  background: #f37a1f;
  font-family: "markpro_bold";
  padding: 8px 50px;
  font-size: 18px;
  color: #fff;
  border-width: 0;
  outline: none;
}

.header_contact {
  background-color: #fff;
  z-index: 999;
  position: relative;
}

.formulaire {
  background-color: #fff;
  padding-bottom: 150px;
}

.cart_map_contact {
  position: relative;
}

.map iframe {
  width: 100%;
  height: 450px;
}

.contact_info {
  background-color: #ffa902;
  padding: 40px 110px 40px 0;
}

.contact_info li {
  font-family: "town10_black";
  font-size: 24px;
  color: #894919;
  position: relative;
  padding-left: 60px;
}

.contact_info li:first-child {
  margin-bottom: 45px;
}

.contact_info li span {
  display: block;
  font-family: "markpro_bold";
  color: #fff;
}

.contact_info li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 37px;
  height: 37px;
}

.tele_contact::after {
  background: url("../images/tele.png") no-repeat;
}

.fax_contact::after {
  background: url("../images/printer.png") no-repeat;
}

.mail_contact::after {
  background: url("../images/mail.png") no-repeat;
}

@media (max-width: 991px) {
  .contact_info {
    position: relative;
    right: 0;
    opacity: 100%;
  }

  .cart_map_contact {
    margin-top: 0;
    display: flex;
    flex-direction: column-reverse;
  }

  .map {
    margin-top: -46px;
  }
}

@media (max-width: 767px) {
  .title_contact h2 {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .contact_info li {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .contact_info {
    padding: 80px 10px;
  }

  .contact_info li:last-child span {
    font-size: 16px;
  }
}

.map_reseau_header {
  padding: 20px 0px;
}

.style_devenir {
  font-size: 25px;
  color: #444444;
  font-family: "markpro_medium";
  text-align: right;
}

.style_devenir a {
  display: inline-block;
  margin-left: 40px;
  border: 1px solid #f37a1f;
  color: #fff;
  font-family: "markpro_medium";
  text-align: center;
  padding: 10px 40px 10px 50px;
  background: #f37a1f url(../images/email-.png) no-repeat left center;
  font-size: 18px;
  background-position: 3%;
}

.select_reseau_label {
  display: inline-block;
  font-size: 26px;
  color: #b1b1b1;
  margin-right: 20px;
  font-family: "markpro_medium";
}

.select_reseau {
  border-bottom: 1px solid #959595;
  max-width: 300px;
  margin: auto;
  display: inline-block;
  min-width: 220px;
}

.select_reseau select:active,
.select_reseau select:hover,
.select_reseau select:focus,
.select_reseau select {
  border: 0px;
  color: #959595;
  font-size: 29px;
  box-shadow: none;
  height: 40px;
  width: 100%;
  outline: none !important;
  cursor: pointer;
  color: #444444;
}

.revendeurmarke {
  width: 400px;
  overflow: hidden;
}

.revendeurmarke .imagemarque {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.revendeurmarke .imagemarque img {
  max-width: 100%;
}

.revendeurmarke h4 {
  font-family: "markpro_bold";
  font-size: 25px;
  color: #ee7724;
  margin-top: 0px;
  margin-bottom: 20px;
  border-bottom: 3px solid #bebebe;
  display: inline-block;
  font-weight: bold;
}

.revendeurmarke ul {
}

.revendeurmarke ul li {
  font-family: "town10_black";
  font-size: 12px;
  font-weight: 900;
  color: #3c3c3c;
  margin-bottom: 10px;
}

.revendeurmarke ul li label {
  font-family: "markpro_bold";
  font-size: 13px;
  color: #e97428;
  font-weight: 900;
  text-transform: uppercase;
  margin-right: 12px;
}

.revendeurmarke ul li label.pointered {
  cursor: pointer;
}

.description {
  margin-top: 40px;
}

/* ----------   Hero-Grid -------------*/
/* ----Category Grid -----*/
.whatsapp_popup a,
.whatsapp_popup a:hover {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: radial-gradient(
    circle,
    rgba(85, 205, 108, 1) 21%,
    rgba(85, 205, 108, 0) 76%
  );
  transition: background 1s ease-in-out;
  animation: shadowAnim 2s forwards infinite;
}
.whatsapp_popup a img {
  width: 45px;
  margin: 10px;
}
@keyframes shadowAnim {
  0% {
    background: radial-gradient(
      circle,
      rgba(85, 205, 108, 1) 21%,
      rgba(85, 205, 108, 0) 76%
    );
  }
  25% {
    background: radial-gradient(
      circle,
      rgba(85, 205, 108, 1) 21%,
      rgba(85, 205, 108, 0) 65%
    );
  }
  50% {
    background: radial-gradient(
      circle,
      rgba(85, 205, 108, 1) 21%,
      rgba(85, 205, 108, 0) 60%
    );
  }
  75% {
    background: radial-gradient(
      circle,
      rgba(85, 205, 108, 1) 21%,
      rgba(85, 205, 108, 0) 65%
    );
  }
  100% {
    background: radial-gradient(
      circle,
      rgba(85, 205, 108, 1) 21%,
      rgba(85, 205, 108, 0) 76%
    );
  }
}
