@charset "UTF-8";
/****************************************************************************/
/* BASE
/****************************************************************************/
@import url("stylesheet.css");
@import url("main.scss");
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*
* 62.5% permet de convertir les rem en px -> 1.6rem = 16px
*/
html {
  font-size: 62.5%;
}
body {
  margin: 0;
}
body.no-scroll {
  overflow: hidden;
  height: 100%;
  /* optionnel pour bien fixer le body */
}
/****************************************************************************/
/* MIXINS
/****************************************************************************/
/****************************************************************************/
/* COULEURS
/****************************************************************************/
.black {
  color: #191919;
}
.bg-black {
  background-color: #191919;
}
.white {
  color: #FFFFFF;
}
.bg-white {
  background-color: #FFFFFF;
}
.orange {
  color: #FC8800;
}
.bg-orange {
  background-color: #FC8800;
}
.blue-light {
  color: #8F9ABE;
}
.bg-blue-light {
  background-color: #8F9ABE;
}
.blue {
  color: #0C2372;
}
.bg-blue {
  background-color: #0C2372;
}
.grey {
  color: #F5F5F5;
}
.bg-grey {
  background-color: #F5F5F5;
}
/****************************************************************************/
/* POLICES / CUSTOM FONTS
/****************************************************************************/
/****************************************************************************/
/* RESPONSIVE BREAKPOINTS
/****************************************************************************/
/*sizes*/
.size-xl {
  font-size: clamp(4.5rem, calc(7vw + 1rem), 7.5rem);
}
.size-l {
  font-size: clamp(3.5rem, calc(6vw + 0.5rem), 6.5rem);
}
.size-m {
  font-size: clamp(3rem, calc(5vw + 0.5rem), 4.5rem);
}
.size-s {
  font-size: clamp(2rem, calc(4vw + 0.3rem), 3.5rem);
}
.size-xs {
  font-size: clamp(1.5rem, calc(3vw + 0.2rem), 2.2rem);
}
.size-xxs {
  font-size: clamp(1.3rem, calc(2.5vw + 0.2rem), 1.9rem);
}
.size-d {
  font-size: clamp(1rem, calc(2vw + 0.2rem), 1.5rem);
}
/*weight*/
.weight-black {
  font-weight: 900;
}
.weight-strong {
  font-weight: 700;
}
.weight-s-bold {
  font-weight: 600;
}
.weight-medium {
  font-weight: 500;
}
.weight-normal {
  font-weight: 400;
}
.weight-light {
  font-weight: 300;
}
/****************************************************************************/
/* GENERAL
/****************************************************************************/
html {
  scroll-behavior: smooth;
}
/****************************************************************************/
/* COOKIES / RGPD
/****************************************************************************/
body.gdpr-infobar-visible {
  position: relative;
}
body.gdpr-infobar-visible::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  top: -150px;
  left: 0;
  z-index: 9980;
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar {
  z-index: 9990;
}
@media (max-width: 576px) {
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
    padding-top: 60px;
  }
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-infobar-allow-all {
  order: 2 !important;
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-infobar-reject-btn {
  order: 1 !important;
}
@media (max-width: 576px) {
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-button-holder {
    position: absolute;
    top: 30px;
    right: 10px;
  }
}
.gdpr_lightbox {
  z-index: 99970;
}
.grecaptcha-badge {
  visibility: hidden;
}
.rgpd__block {
  border: 0px solid rgba(0, 0, 0, 0.125);
  display: block;
  margin: 15px 0;
}
.rgpd__block .rgpd__title {
  font-weight: 600;
  font-size: 1.3rem;
}
.rgpd__block .rgpd__content {
  height: 120px;
  overflow: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  font-weight: 400;
  font-size: 1.3rem;
}
.rgpd__block .rgpd__content::-webkit-scrollbar {
  display: none;
}
.rgpd__block .rgpd__content > p, .rgpd__block .rgpd__content ul {
  font-size: 1.4rem;
}
/****************************************************************************/
/* TITRES, LIENS et TEXTES
/****************************************************************************/
body {
  font-family: "Montserrat";
  font-size: 1.5rem;
  font-weight: 600;
  color: #0C2372;
}
p {
  font-size: 1.5rem;
}
img, iframe {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
a[href="#"] {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}
a:not([href="#"]):hover {
  cursor: pointer;
  text-decoration: none;
}
h1, .h1 {
  font-size: clamp(3rem, calc(5vw + 0.5rem), 4.5rem);
  font-weight: 900;
}
h1 strong, .h1 strong {
  font-size: clamp(4.5rem, calc(7vw + 1rem), 7.5rem);
  display: block;
}
h2, .h2 {
  font-size: clamp(2rem, calc(4vw + 0.3rem), 3.5rem);
  font-weight: 900;
}
h3, .h3 {
  font-size: clamp(1.5rem, calc(3vw + 0.2rem), 2.2rem);
}
ul li {
  list-style-type: none;
}
.heading h1, .seo_content h1 {
  font-size: clamp(3rem, calc(5vw + 0.5rem), 4.5rem);
  font-weight: 900;
}
.heading h1 strong, .seo_content h1 strong {
  font-size: clamp(4.5rem, calc(7vw + 1rem), 7.5rem);
  display: block;
}
.heading h2, .seo_content h2 {
  font-size: clamp(2rem, calc(4vw + 0.3rem), 3.5rem);
  font-weight: 800;
}
.heading h3, .seo_content h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #8F9ABE;
}
.heading h4, .seo_content h4 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0C2372;
}
.heading h5, .seo_content h5 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #8F9ABE;
}
.heading h6, .seo_content h6 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #8F9ABE;
}
.paragraph {
  font-weight: 600;
}
.list .wp-block-list {
  padding-left: 0;
}
.list .wp-block-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}
.list .wp-block-list li:before {
  height: 8px;
  width: 8px;
  position: absolute;
  border: 2px solid #0C2372;
  border-radius: 50%;
  content: "";
  top: 7px;
  left: 0;
}
.meda_txt_part .content ul {
  padding-left: 0;
}
.meda_txt_part .content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}
.meda_txt_part .content ul li:before {
  height: 8px;
  width: 8px;
  position: absolute;
  border: 2px solid #0C2372;
  border-radius: 50%;
  content: "";
  top: 7px;
  left: 0;
}
.content ul {
  padding-left: 0;
}
.content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}
.content ul li:before {
  height: 8px;
  width: 8px;
  position: absolute;
  border: 2px solid #0C2372;
  border-radius: 50%;
  content: "";
  top: 7px;
  left: 0;
}
.underline {
  position: relative;
  padding-bottom: 31px;
}
.underline:after {
  position: absolute;
  content: "";
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 286px;
  height: 31px;
  background: url(icons/underline.svg) no-repeat center / 100%;
}
.underlined_word {
  position: relative;
  padding-bottom: 31px;
}
.underlined_word:after {
  position: absolute;
  content: "";
  bottom: 13px;
  left: 0;
  width: 286px;
  height: 31px;
  background: url(icons/underline.svg) no-repeat center / 100%;
}
.icon {
  height: 27px;
  width: 27px;
  display: block;
  background-color: #0C2372;
}
.icon.user {
  -webkit-mask: url("icons/user.svg") no-repeat center;
  mask: url("icons/user.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon.mail {
  -webkit-mask: url("icons/mail.svg") no-repeat center;
  mask: url("icons/mail.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon.search {
  -webkit-mask: url("icons/search.svg") no-repeat center;
  mask: url("icons/search.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon.arrow-left {
  -webkit-mask: url("icons/arrow-left.svg") no-repeat center;
  mask: url("icons/arrow-left.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon.arrow-right {
  -webkit-mask: url("icons/arrow-right.svg") no-repeat center;
  mask: url("icons/arrow-right.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon.phone {
  -webkit-mask: url("icons/phone.svg") no-repeat center;
  mask: url("icons/phone.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon.garbage {
  -webkit-mask: url("icons/garbage.svg") no-repeat center;
  mask: url("icons/garbage.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon.close {
  -webkit-mask: url("icons/close.svg") no-repeat center;
  mask: url("icons/close.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon_part {
  transition: all 0.2s ease;
  position: relative;
  height: 56px;
  width: 56px;
  border: 2px solid #0C2372;
  border-radius: 50%;
}
.icon_part .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.2s ease;
}
.btn {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 28px;
}
.btn.bg-orange:hover {
  background-color: #0C2372;
  color: #FFFFFF;
}
.btn.bg-blue:hover {
  background-color: #FC8800;
  color: #FFFFFF;
}
.btn.bg-white:hover {
  background-color: #FC8800 !important;
  color: #FFFFFF;
}
.btn.bg-white:hover .icon {
  background-color: #FFFFFF;
}
.btn .icon {
  transition: all 0.2s ease;
}
.btn.btn-border-white {
  border: 3px solid #FFFFFF;
}
.btn.btn-border-blue {
  border: 3px solid #0C2372;
}
.btn.btn-border-blue:hover {
  border-color: #FC8800;
}
.btn.btn-square {
  border-radius: 0;
}
.buttons .wp-block-button .wp-element-button {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 28px;
  background-color: #0C2372;
  color: #FFFFFF;
}
.buttons .wp-block-button .wp-element-button:hover {
  background-color: #FC8800;
  color: #FFFFFF;
}
.wp-block-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-block-gallery > .row {
  padding: 0;
  max-width: 32%;
}
.wp-block-gallery > .row > .col-12 {
  padding: 5px;
}
/****************************************************************************/
/* HEADER + MENU + BREADCRUMB
/****************************************************************************/
.navbar-brand img {
  max-height: 88px;
}
#navbarNav {
  position: relative;
  transition: all 0.3s ease;
}
#navbarNav .close {
  position: absolute;
  right: 30px;
  top: 30px;
}
#navbarNav .close .icon {
  top: 50%;
}
#navbarNav .close:hover {
  cursor: pointer;
  border-radius: 0;
}
.navbar-toggler {
  display: block;
  float: right;
  border: 2px solid #0C2372;
  position: relative;
  height: 44px;
  width: 44px;
  padding: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0;
}
.navbar-toggler:hover {
  border-radius: 50%;
}
.navbar-toggler .navbar-toggler-icon {
  position: absolute;
  width: 80%;
  left: 10%;
  height: 2px;
  background-color: #0C2372;
  top: calc(50% - 1px);
}
.navbar-toggler .navbar-toggler-icon:first-child {
  top: calc(25% - 1px);
}
.navbar-toggler .navbar-toggler-icon:last-child {
  top: calc(75% - 1px);
}
.search_part {
  margin-left: 45px;
  width: 100%;
  max-width: 390px;
}
.search_part .search-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F5F5F5;
  padding: 10px 30px;
  border-radius: 30px;
  width: 100%;
  max-width: 390px;
}
.search_part .search-form .search-field {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 600;
  font-size: 1.3rem;
  color: #0C2372;
}
.search_part .search-form .search-field:focus {
  outline: none;
  /* Supprime le contour bleu */
  border: none;
  /* Supprime la bordure */
  box-shadow: none;
  /* Supprime l'effet d'ombre */
}
.search_part .search-form .search-submit {
  border: 0;
  background: transparent;
}
.search-field::placeholder {
  opacity: 1 !important;
  /* Force le placeholder à être pleinement visible */
  color: #0C2372;
}
.menu_part .secondary-menu .menu-secondary {
  text-align: end;
}
.menu_part .secondary-menu .menu-secondary .menu-item {
  display: inline-block;
  margin: 10px 0 10px 20px;
}
.menu_part .secondary-menu .menu-secondary .menu-item a {
  display: flex;
  align-items: center;
  justify-content: start;
}
.menu_part .secondary-menu .menu-secondary .menu-item a .icon {
  margin-right: 7px;
}
.menu_part .secondary-menu .menu-secondary .menu-item.wpml-ls-menu-item:first-child {
  margin-left: 30px;
}
.menu_part .secondary-menu .menu-secondary .menu-item.wpml-ls-menu-item:last-child {
  margin-left: 10px;
}
.menu_part .secondary-menu .wpml-ls-item:not(.wpml-ls-current-language) a {
  filter: grayscale(100%);
}
.menu_part #menu-menu-principal .nav-item, .menu_part #menu-main-menu .nav-item {
  margin-left: 20px;
}
.menu_part #menu-menu-principal .nav-item.wpml-ls-item, .menu_part #menu-main-menu .nav-item.wpml-ls-item {
  display: none !important;
}
.menu_part #menu-menu-principal .dropdown-menu, .menu_part #menu-main-menu .dropdown-menu {
  min-width: 360px;
  left: -50%;
  column-count: 2;
}
.menu_part #menu-menu-principal .dropdown-menu .nav-link, .menu_part #menu-main-menu .dropdown-menu .nav-link {
  font-size: 1.5rem;
}
.rank-math-breadcrumb {
  padding: 10px 0;
}
.rank-math-breadcrumb * {
  font-size: 1.5rem;
  font-weight: 500;
}
.rank-math-breadcrumb a:hover {
  color: #FC8800;
}
/****************************************************************************/
/* BLOC MEDIA / TEXTE
/****************************************************************************/
/****************************************************************************/
/* BLOC CHIFFRES CLES
/****************************************************************************/
/****************************************************************************/
/* HOMEPAGE
/****************************************************************************/
/****************************************************************************/
/* RECRUTEMENT
/****************************************************************************/
/****************************************************************************/
/* ACTUALITES
/****************************************************************************/
/****************************************************************************/
/* SLICK SLIDER
/****************************************************************************/
.slick-slider {
  position: relative;
  display: block;
  padding-bottom: 40px;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-slider .slick-list:focus {
  outline: none;
}
.slick-slider .slick-list .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/****************************************************************************/
/* FOOTER
/****************************************************************************/
/****************************************************************************/
/* FORMS
/****************************************************************************/
.wp-block-contact-form-7-contact-form-selector .wpcf7 form .row + .row {
  margin-top: 30px;
}
.wp-block-contact-form-7-contact-form-selector .wpcf7 form .form-group input, .wp-block-contact-form-7-contact-form-selector .wpcf7 form .form-group textarea, .wp-block-contact-form-7-contact-form-selector .wpcf7 form .form-group select {
  background: #FFFFFF;
  border: 1px solid #0C2372;
  color: #0C2372;
  padding: 10px;
  border-radius: 0;
}
/****************************************************************************/
/* MAPS
/****************************************************************************/
#map {
  position: relative;
  height: 500px;
  width: 100%;
}
#map .marker {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background-color: rgba(255, 0, 0, 0.5);
}
.home_header_part .title_part {
  position: relative;
  z-index: 10;
}
.home_header_part .title_part .btn {
  position: relative;
  margin-bottom: -135px;
}
.home_header_slider_part .slider {
  position: relative;
}
.home_header_slider_part .slider .item .bg {
  display: block;
  width: 100%;
  height: 537px;
}
.home_header_slider_part .slider .arrow_part {
  transition: all 0.2s ease;
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  height: 51px;
  width: 51px;
  background: #FFFFFF;
  color: #0C2372;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  z-index: 9;
}
.home_header_slider_part .slider .arrow_part .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.home_header_slider_part .slider .arrow_part.arrow_part_next {
  left: inherit;
  right: 3%;
}
.home_header_slider_part .slider .arrow_part:hover {
  border-color: #0C2372;
  cursor: pointer;
}
.bloc_product {
  display: block;
  min-height: 424px;
  background: #FFFFFF;
  padding: 15px;
  border: 1px solid #FFFFFF;
  transition: all 0.2s ease;
  position: relative;
}
.bloc_product .product_tag {
  position: absolute;
  top: 15px;
  left: 0;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 6px 13px;
  z-index: 9;
}
.bloc_product .img_part {
  position: relative;
  display: block;
  height: 200px;
  padding: 10px;
}
.bloc_product .img_part .img-fluid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 180px;
  max-height: 180px;
}
.bloc_product .info_part .h3 {
  font-weight: 900;
  font-size: 2.2rem;
}
.bloc_product .info_part .desc p {
  font-weight: 600;
  text-align: start;
}
.bloc_product .info_part .link_p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: start;
}
.bloc_product .info_part .link_p .link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}
.bloc_product .info_part .link_p .link .arrow_part {
  height: 51px;
  width: 51px;
  border-radius: 50%;
  position: relative;
  background: #8F9ABE;
  margin-right: 15px;
}
.bloc_product .info_part .link_p .link .arrow_part .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-54%) translateX(-50%);
}
.bloc_product:hover {
  border-color: #F5F5F5;
}
.bloc_product:hover .desc {
  color: #FC8800;
}
.bloc_product:hover .blue {
  color: #FC8800;
}
.bloc_product:hover .link {
  color: #FC8800;
}
.bloc_product:hover .link .arrow_part {
  color: #FFFFFF !important;
  background-color: #FC8800 !important;
}
.bloc_product:hover .link .arrow_part .icon {
  background-color: #FFFFFF !important;
}
.home .page-content, .page:not(.page-template-page-contact) .page-content {
  background-color: #F5F5F5;
}
.new_product_part .underline {
  font-size: clamp(3.5rem, calc(6vw + 0.5rem), 6.5rem);
}
.new_product_part .underline:after {
  left: 0;
  transform: translateX(0);
  background: url(icons/underline-orange.svg) no-repeat center / 100%;
}
.new_product_part .card {
  display: block;
  margin: 30px 0;
  padding: 15px;
  border: 1px solid #FC8800;
  border-radius: 0;
}
.new_product_part .card ul {
  padding-left: 0;
}
.new_product_part .card ul li {
  padding-left: 20px;
  position: relative;
}
.new_product_part .card ul li:before {
  height: 8px;
  width: 8px;
  position: absolute;
  border: 2px solid #0C2372;
  border-radius: 50%;
  content: "";
  top: 7px;
  left: 0;
}
.filtered_products_part .nav-tabs {
  border-bottom: 0;
}
.filtered_products_part .nav-tabs .nav-item {
  margin-right: 10px;
  border: 0;
}
.filtered_products_part .nav-tabs .nav-item .nav-link {
  border: 0;
  padding: 28px 170px 28px 28px;
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #0C2372;
  background-color: #FFFFFF;
  display: block;
}
.filtered_products_part .nav-tabs .nav-item .nav-link.active {
  color: #FFFFFF;
  background-color: #0C2372;
}
.filtered_products_part .taxo-list .taxo-list-item a {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: start;
  transition: all 0.2s ease;
}
.filtered_products_part .taxo-list .taxo-list-item a .icon_part {
  transition: all 0.2s ease;
  position: relative;
  height: 56px;
  width: 56px;
  border: 2px solid #0C2372;
  border-radius: 50%;
}
.filtered_products_part .taxo-list .taxo-list-item a .icon_part .img-fluid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.2s ease;
}
.filtered_products_part .taxo-list .taxo-list-item a:hover {
  color: #FC8800;
}
.filtered_products_part .taxo-list .taxo-list-item a:hover .icon_part {
  border-color: #FC8800;
  background-color: #FC8800;
}
.filtered_products_part .taxo-list .taxo-list-item a:hover .icon_part .img-fluid {
  filter: brightness(0) invert(100%);
  mix-blend-mode: normal;
}
.txt_2img_part .img_part {
  padding-bottom: 60px;
  padding-right: 60px;
  position: relative;
  display: block;
  height: 100%;
}
.txt_2img_part .img_part .bloc_img_2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.txt_2img_part .txt_part {
  padding-left: 50px;
}
.txt_2img_part .txt_part .h2 {
  margin-bottom: 75px;
  margin-left: -15%;
}
.txt_2img_part .txt_part .desc {
  width: calc(100% - 120px);
}
.reassurance_part .reassurance_item {
  font-weight: 600;
}
.reassurance_part .reassurance_item .icon_part {
  height: 68px;
  width: 68px;
  position: relative;
  border-radius: 50%;
}
.reassurance_part .reassurance_item .icon_part .img-fluid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.footer .baseline {
  font-size: 1.4rem;
  font-weight: 600;
  padding-right: 30px;
}
.footer .links a {
  font-size: 1.6rem;
}
.footer .links a:hover {
  color: #FC8800;
}
.footer .title {
  font-size: 1.6rem;
  font-weight: 800;
}
.footer .taxo_list {
  padding-left: 0;
}
.footer .taxo_list li {
  display: block;
  margin-bottom: 5px;
}
.footer .taxo_list li a {
  font-size: 1.4rem;
  font-weight: 600;
}
.footer .taxo_list li a:hover {
  color: #FC8800;
}
.footer .last_footer {
  font-size: 1.4rem;
  font-weight: 600;
}
.footer .last_footer a:hover {
  color: #FC8800;
}
.page_header_part .underline {
  padding-bottom: 41px;
}
.page_header_part .desc {
  font-weight: 600;
}
.meda_txt_part .content h2 {
  margin-bottom: 10px;
}
.meda_txt_part .content h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #8F9ABE;
}
.meda_txt_part .content p, .meda_txt_part .content li {
  font-size: 1.5rem;
  font-weight: 600;
}
.meda_txt_part .content .btn {
  margin-top: 15px;
}
.archive .page-content {
  background-color: #F5F5F5;
}
.archive_header_part .filters .filters-select {
  display: inline-block;
  margin: 10px;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #0C2372;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: end;
}
.grid_item {
  width: 25%;
  /* Chaque élément occupe 25% de la largeur du conteneur */
  padding: 5px;
}
.grid_item_sm {
  width: 16.6%;
}
.grid_item_sm .bloc_product {
  padding: 5px;
  min-height: 200px;
}
.grid_item_sm .bloc_product .img_part {
  height: 180px;
  padding: 0;
}
.grid_item_sm .bloc_product .img_part .img-fluid {
  max-width: 155px;
  max-height: 155px;
}
.grid_item_sm .bloc_product .info_part {
  padding-top: 15px;
}
.grid_item_sm .bloc_product .info_part .h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
}
.grid_item_sm .bloc_product .info_part .desc p {
  font-size: 1.3rem;
  font-weight: 400;
}
.isotope-pager {
  display: block;
  padding: 20px 0;
  text-align: end;
}
.isotope-pager .pager {
  display: inline-block;
  padding: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8F9ABE;
}
.isotope-pager .pager.active {
  color: #0C2372;
}
.isotope-pager .pager:hover {
  color: #FC8800;
}
.single-produit .page-content {
  background-color: #F5F5F5;
}
.single-produit .img_bloc {
  height: 460px;
  width: 100%;
  display: block;
  position: relative;
  border: 1px solid #F5F5F5;
  padding: 30px;
}
.single-produit .img_bloc .img-fluid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-height: 445px;
  width: auto;
}
.single-produit .pdt_gallery_part {
  /*position: absolute;
    bottom: 0;
    left: 0;*/
}
.single-produit .pdt_gallery_part .thumb {
  height: 90px;
  width: 90px;
  border: 1px solid #F5F5F5;
  padding: 3px;
  display: inline-block;
  text-align: center;
}
.single-produit .pdt_gallery_part .thumb .img-fluid {
  max-height: 84px;
  position: relative;
}
.single-produit .pdt_gallery_part .thumb:hover {
  cursor: pointer;
}
.single-produit .pdt_gallery_part .thumb.active {
  border-color: #0C2372;
}
.phone_part .phone {
  font-size: 2.5rem;
  font-weight: 700;
  transition: all 0.2s ease;
}
.phone_part .phone .icon_part {
  transition: all 0.2s ease;
}
.phone_part .phone .icon_part .icon {
  transition: all 0.2s ease;
}
.phone_part .phone:hover {
  color: #FC8800;
}
.phone_part .phone:hover .icon_part {
  background-color: #FC8800;
  border-color: #FC8800;
}
.phone_part .phone:hover .icon_part .icon {
  background-color: #FFFFFF;
}
.form_part {
  padding: 50px 75px;
}
.form-group .form-control {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  padding: 8px 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0C2372;
  border-bottom: 2px solid #0C2372;
}
.form-group .form-control:focus-visible {
  box-shadow: 0 0 0 0 transparent;
}
.form-group .form-control.wpcf7-textarea {
  border: 2px solid #0C2372;
  padding: 8px;
  margin-top: 10px;
}
.form-group .form-control.wpcf7-checkbox {
  border: 0;
  display: block;
}
.form-group .form-control.wpcf7-checkbox .wpcf7-list-item {
  width: 50%;
  margin: 0;
}
.form-group .form-control.wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: start;
}
.form-group .form-control.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  margin-left: 0;
}
.form-group .form-control.wpcf7-checkbox .wpcf7-list-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.form-group .form-control.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding-left: 50px;
  cursor: pointer;
  display: inline-block;
  line-height: 35px;
  margin-left: 0;
}
.form-group .form-control.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  border: 2px solid #0C2372;
  background-color: transparent;
}
.form-group .form-control.wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  transition: all 0.2s ease;
  content: "";
  position: absolute;
  left: 9px;
  top: 9px;
  width: 17px;
  height: 17px;
  background-color: #0C2372;
}
.form-group input:-webkit-autofill, .form-group input:-webkit-autofill:hover, .form-group input:-webkit-autofill:focus, .form-group input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  /* Définit un fond transparent */
  -webkit-text-fill-color: #000;
  /* Définit la couleur du texte */
  transition: background-color 5000s ease-in-out 0s;
  /* Retarde le changement de couleur de fond */
}
.form-group.with_label {
  position: relative;
  padding-top: 15px;
}
.form-group.with_label label {
  position: absolute;
  top: 23px;
  transition: all 0.2s ease;
}
.form-group.with_label.focused label {
  top: 0;
  font-size: 1.2rem;
  opacity: 0.3;
}
.form-check.cgv_check p a {
  text-decoration: underline;
}
.pro_navbar .btn {
  font-weight: 900;
  font-size: 1.8rem;
}
.pro_navbar .btn.active {
  color: #FFFFFF;
  background-color: #0C2372 !important;
}
.search_pdt_part .form_order {
  position: relative;
}
.search_pdt_part .form_order .add_to_cart {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: 0;
}
.search_pdt_part .form_order .select2-container {
  min-width: 360px;
}
.search_pdt_part .form_order .select2-container .selection {
  display: block;
  padding: 8px 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0C2372;
  border: 2px solid #0C2372;
  border-radius: 24px;
  min-width: 360px;
  background-color: transparent !important;
}
.search_pdt_part .form_order .select2-container .selection .select2-selection {
  background-color: transparent !important;
  border: 0;
}
.search_pdt_part .form_order .select2-container .selection .select2-selection__arrow {
  display: none;
}
.search_pdt_part .form_order .select2-container .selection .select2-selection__clear {
  margin-right: 46px;
}
.search_pdt_part .form_order .select2-container .selection .select2-selection__placeholder {
  color: #0C2372;
}
.select2-container--open .select2-dropdown {
  top: 36px;
}
.table_order thead tr th {
  padding: 25px 50px;
  background-color: #0C2372;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: start;
}
.table_order tbody tr td {
  vertical-align: middle;
  padding: 25px 50px;
  background-color: #FFFFFF;
  color: #0C2372;
  font-size: 1.5rem;
  font-weight: 600;
}
.table_order tbody tr td .thumb {
  max-height: 70px;
  width: auto;
}
.table_order tbody tr td .size_select {
  background-color: transparent;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0C2372;
  border-radius: 0;
  border: 0;
}
.table_order tbody tr td .qtty {
  background-color: transparent;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0C2372;
  border-radius: 0;
  border: 2px solid #0C2372;
  text-align: center;
  height: 50px;
  width: 50px;
}
.table_order tbody tr td .legend {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  margin-left: 10px;
}
.table_order .icon_part {
  display: inline-block;
  height: 44px;
  width: 44px;
  border-radius: 50%;
}
.table_order .icon_part .icon {
  background-color: #FFFFFF;
  height: 20px;
  width: 20px;
}
.table_order .icon_part:hover {
  cursor: pointer;
  background-color: #FC8800;
  border-color: #FC8800;
}
.order_info_part .form-group textarea {
  background-color: #FFFFFF;
  padding: 30px;
  border: 0;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: #0C2372;
}
.normes_part .h3 {
  font-size: clamp(2rem, calc(4vw + 0.3rem), 3.5rem);
  font-weight: 900;
}
.normes_part .norme_item {
  max-width: 260px;
  padding: 10px 15px;
}
.normes_part .norme_item .desc p, .normes_part .norme_item .desc li {
  font-weight: 400;
}
@media (max-width: 1399.98px) {
  .header > .container {
    max-width: 100%;
  }
  .header .search_part {
    max-width: 320px;
  }
  .header .search_part .search-form {
    max-width: 320px;
  }
}
@media (max-width: 1199.98px) {
  .header .w-100 {
    width: calc(100% - 250px) !important;
  }
  #navbarNav {
    position: fixed;
    z-index: 99;
    right: -100%;
    top: 0px;
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    background-color: #FFFFFF;
    padding: 30px;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  #navbarNav.show {
    right: 0;
  }
  #navbarNav #menu-menu-principal, #navbarNav #menu-main-menu {
    height: 100vh;
  }
  #navbarNav #menu-menu-principal .nav-item, #navbarNav #menu-main-menu .nav-item {
    display: block;
    width: 100%;
    margin: 15px;
  }
  #navbarNav #menu-menu-principal .nav-item .nav-link, #navbarNav #menu-main-menu .nav-item .nav-link {
    display: block;
  }
  #navbarNav #menu-menu-principal > li > a, #navbarNav #menu-main-menu > li > a {
    font-size: 2rem;
  }
  #navbarNav #menu-menu-principal .dropdown-menu, #navbarNav #menu-main-menu .dropdown-menu {
    font-size: inherit;
    color: inherit;
    background-color: transparent;
    column-count: 2;
    border: 0;
  }
  #navbarNav #menu-menu-principal .dropdown-menu .nav-item, #navbarNav #menu-main-menu .dropdown-menu .nav-item {
    padding-left: 15px;
    position: relative;
  }
  #navbarNav #menu-menu-principal .dropdown-menu .nav-item:before, #navbarNav #menu-main-menu .dropdown-menu .nav-item:before {
    height: 8px;
    width: 8px;
    position: absolute;
    border: 2px solid #0C2372;
    border-radius: 50%;
    content: "";
    top: 10px;
    left: 0;
  }
  .header .search_part, .header .search_part .search-form {
    max-width: 220px;
  }
  .underlined_word::after {
    background-size: 70%;
  }
  .grid_item {
    width: 33%;
  }
  .container_custom {
    max-width: 100%;
  }
  .pro_navbar .btn {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
}
@media (max-width: 991.98px) {
  .featured_products_part, .online_order_part, .filtered_products_part {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
  }
  .txt_2img_part .txt_part .h2 {
    margin-left: 0;
    margin-top: 45px;
    margin-bottom: 25px;
  }
  .txt_2img_part .txt_part .desc {
    width: 100%;
  }
  .txt_2img_part .txt_part {
    padding: 15px;
  }
  .bloc_img_1 {
    position: relative;
    transition: all 0.2s ease;
  }
  .bloc_img_1:hover {
    cursor: pointer;
    z-index: 3;
  }
  .bloc_img_1:hover .img-fluid {
    transition: all 0.2s ease;
  }
  .reassurance_part > .container {
    max-width: 100%;
  }
  .reassurance_part .reassurance_item .icon_part {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }
  .reassurance_part .reassurance_item .icon_part .img-fluid {
    max-width: 70%;
  }
}
@media (max-width: 767.98px) {
  .underline:after {
    /*left:0;
      transform: translateX(0);*/
    background-size: 70%;
  }
  .secondary-menu .menu-secondary .menu-item span {
    display: none;
  }
  #navbarNav #menu-menu-principal .nav-item.with_icon .nav-link, #navbarNav #menu-main-menu .nav-item.with_icon .nav-link {
    display: flex;
  }
  #navbarNav #menu-menu-principal .nav-item.with_icon .nav-link .icon, #navbarNav #menu-main-menu .nav-item.with_icon .nav-link .icon {
    margin-right: 10px;
  }
  #navbarNav #menu-menu-principal .nav-item.wpml-ls-item, #navbarNav #menu-main-menu .nav-item.wpml-ls-item {
    display: none;
  }
  .home_header_part .slider .item .bg {
    height: 330px;
  }
  .home_header_part .title_part .btn {
    margin-bottom: -35px;
  }
  .filtered_products_part .nav-tabs .nav-item .nav-link {
    padding: 20px;
  }
  .reassurance_part .reassurance_item {
    width: 49%;
    display: inline-flex !important;
  }
  .grid_item {
    width: 50%;
  }
  .table_order tbody tr td, .table_order thead tr th {
    padding: 15px;
  }
}
@media (max-width: 575.98px) {
  .navbar-brand .logo-img {
    max-width: 160px;
  }
  .header .w-100 {
    width: calc(100% - 170px) !important;
  }
  #navbarNav #menu-menu-principal .nav-item.wpml-ls-item, #navbarNav #menu-main-menu .nav-item.wpml-ls-item {
    display: block !important;
  }
  .bloc_product {
    width: 100%;
    max-width: 360px;
  }
  .btn {
    font-size: 1.4rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 22px;
  }
  .filtered_products_part .nav-tabs .nav-item .nav-link {
    font-size: 1.8rem;
  }
  .reassurance_part .reassurance_item {
    width: 100%;
    display: inline-flex !important;
  }
  #navbarNav {
    padding: 30px 15px;
  }
  #navbarNav #menu-menu-principal .dropdown-menu, #navbarNav #menu-main-menu .dropdown-menu {
    column-count: 1;
  }
  .txt_2img_part .img_part .bloc_img_2 {
    right: 15px;
    max-width: 85%;
  }
  .grid_item {
    width: 50%;
  }
  .archive_header_part .filters .filters-select {
    max-width: 50%;
    text-align: left;
  }
  .form_part {
    padding: 20px;
  }
}
