.hexagon {
  position: fixed;
  width: 25px;
  height: 25px;
  background-color: transparent;
  pointer-events: none;
  border-radius: 50% !important;
  transform: translate(-50%, -50%);
  border: 2px solid #7E141A !important;
  z-index: 99999;
  /*transition: background-color 0.3s ease;*/
}
.polygon {
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: transparent;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 50% !important;
  background-color: #7E141A !important;
  z-index: 99999;
  /*transition: background-color 0.3s ease;*/
}
.hexagon.small {
    width: 6px;
    height: 6px;
}

li.parent-menu.current-menu-item>ul.sub-menu>li>a {
	color: #121312!important;
}

body #page-container ul#mobile_menu1>li>ul.sub-menu>li.current_page_item>a {
    color: #fff !important;
    background-color: #1a9120 !important;
}

/**** BTN ICON CSS ****/
body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button {
    position: relative;
	overflow: hidden !important;
    z-index: 0 !important;
    padding: 13px 55px 13px 30px !important;
}
body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button:after {
    content: "" !important;
    display: block !important;
    width: 16px !important;
    height: 16px !important;
    position: absolute;
    top: 18px;
    right: 29px;
    opacity: 1 !important;
    visibility: visible !important;
    background-image: url(/wp-content/uploads/2025/07/icon-btn.svg);
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: -1;
}
/*body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button:hover:after {
	animation: move-forward-right .6s cubic-bezier(.645,.045,.355,1) 0s both 1;
    transform: translate(0);
    transition: all .4s cubic-bezier(.42,0,.58,1);
    transition-delay: 0s;
}*/
body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button.no-icon {
    padding: 13px 30px !important;
}
body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button.no-icon:after {
	display: none !important;
}
body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button.cta {
	border-color: #fff !important;
}
body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button.cta:after {
	filter: brightness(0) !important;
}
/*body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button.cta:hover {
    color: #fff !important;
    border-color: #121312 !important;
	background-color: #121312 !important;
}*/
body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button.cta:hover:after {
	filter: brightness(0) invert(1) !important;
}

body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button:before {
    content: "" !important;
    display: block !important;
    width: 0 !important;
    height: 110% !important;
    position: absolute;
    top: 0;
    left: 32px;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: #7E141A;
    transform: skewX(16deg);
    transition: all .4s !important;
    z-index: -1;
}
body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button:hover:before {
	width: 120% !important;
}
body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button:hover { 
    color: #fff !important;
    border-color: #7E141A !important;
	/*background-color: #7E141A !important;*/
}

/*body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button.cta:hover:after {
	animation: move-forward-right .6s cubic-bezier(.645,.045,.355,1) 0s both 1;
    transform: translate(0);
    transition: all .4s cubic-bezier(.42,0,.58,1);
    transition-delay: 0s;
}*/
.number-style {
  font-family: 'Inter Regular', Helvetica, Arial, Lucida, sans-serif;
  font-size: 1em; /* ou la taille que tu veux */
}
/**** ANIMATION BTN ****/
@keyframes move-forward-right {
	50% {
    	transform: translate(100%);
	}
	51% {
    	transform: translate(-100%);
    	opacity: 0;
	}
	100% {
    	transform: translate(0);
    	opacity: 1;
	}
}

/**** ICONE ANIMATION ****/
.icon-anim {
    transition: all .4s ease-in-out;
}
.icon-anim img {
    transition: all .4s ease-in-out;
}
.icon-anim:hover img {
    animation: bounceIn 1s linear;
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
   -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
   animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
   opacity: 0;
   -webkit-transform: scale3d(0.3, 0.3, 0.3);
   transform: scale3d(0.3, 0.3, 0.3);
}
20% {
   -webkit-transform: scale3d(1.1, 1.1, 1.1);
   transform: scale3d(1.1, 1.1, 1.1);
}
40% {
   -webkit-transform: scale3d(0.9, 0.9, 0.9);
   transform: scale3d(0.9, 0.9, 0.9);
}
60% {
   opacity: 1;
   -webkit-transform: scale3d(1.03, 1.03, 1.03);
   transform: scale3d(1.03, 1.03, 1.03);
}
80% {
   -webkit-transform: scale3d(0.97, 0.97, 0.97);
   transform: scale3d(0.97, 0.97, 0.97);
}
100% {
   opacity: 1;
   -webkit-transform: scale3d(1, 1, 1);
   transform: scale3d(1, 1, 1);
}
}


/**** HEADER CSS ****/
.header .menu-header #menu-menu-principal>li {
   padding: 0 !important;
   margin-top: 0 !important;
}
.header {
	transition: all .4s !important;
}
.header.nav-scroll {
	transition: all .4s !important;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.header .menu-header #menu-menu-principal>li>a {
   position: relative;
}
.header .menu-header #menu-menu-principal>li:not(:last-child):before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    position: absolute;
    top: 44px;
    left: auto !important;
    right: -17px;
    background-color: #0B8F36;
    border-radius: 50%;
}
.header .menu-header #menu-menu-principal>li:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 32px;
    left: 0;
    border-radius: 50px !important;
    background-color: #0B8F36;
    transition: all .4s !important;
}
.header .menu-header #menu-menu-principal>li:hover:after {
    width: 100% !important;
}
.header .menu-header #menu-menu-principal>li.current-menu-item:after {
    width: 100% !important;
}
.header .menu-header #menu-menu-principal>li:not(:last-child) {
    margin-right: 30px !important;
}
.header .menu-header #menu-menu-principal ul.sub-menu>li>a:before {
	display: none !important;
}
.header .menu-header #menu-menu-principal>li.parent-menu {
	cursor: pointer !important;
}
.header .menu-header #menu-menu-principal>li.parent-menu {
    margin-right: 30px !important;
}
.header .menu-header #menu-menu-principal>li.parent-menu:before {
    display: none !important;
}
.header .menu-header #menu-menu-principal>li.parent-menu>:after {
	right: -20px;
    top: 39px;
}
.header .menu-header #menu-menu-principal>li>ul.sub-menu {
    width: 250px !important;
	border-radius: 5px !important;
    padding-bottom: 20px !important;
}
.header .menu-header #menu-menu-principal>li>ul.sub-menu>li {
    width: 100% !important;
}
.header .menu-header #menu-menu-principal>li>ul.sub-menu>li>a {
	width: 100% !important;
}
.header .menu-header #menu-menu-principal>li>ul.sub-menu>li>a:hover {
	color: #fff !important;
    opacity: 1 !important;
    background-color: #0B8F36 !important;
}
.header .menu-header #menu-menu-principal>li>ul.sub-menu>li.current-menu-item>a {
	color: #fff !important;
    background-color: #0B8F36 !important;
}

@media screen and (max-width: 1024px) {
  .coordonnee-header span.et_pb_image_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px !important;
    height: 32px !important;
    padding: 5px;
    border-radius: 3px;
    background-color: #0b8f36;
  }
  .coordonnee-header span.et_pb_image_wrap img {
     width: 22px !important;
     height: 22px !important;
     filter: brightness(0) invert(1);
  }
}

/**** ANIMATION INFINI ****/
/*@keyframes textScrolling {
	0% {
    	transform: translate3d(0%, 0, 0);
	}
	100% {
    	transform: translate3d(-100%, 0, 0);
	}
}*/
@keyframes textScrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/**** ACCUEIL CSS ****/
.chapo .et_pb_main_blurb_image {
	width: 18px !important;
}
.chapo .et_pb_text_inner {
    position: relative;
    display: inline-block;
    padding: 2px 30px 2px 54px;
    border-radius: 50px;
    background-color: #7E141A;
}
.chapo .et_pb_text_inner:before {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    position: absolute;
    top: 7px;
    left: 29px;
    background-image: url(/wp-content/uploads/2025/07/leaf-chapo.svg);
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
}
.col-transform-item {
	transition: all .4s !important;
}
.col-transform-item:hover {
	transform: translatey(-5px) !important;
}
.transform-item img {
    height: 190px;
    object-fit: cover;
}
.objectif-item span.et_pb_image_wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.service-item {
	mask-image: url("/wp-content/uploads/2025/07/mask-service.svg");
    /*mask-image: url("/wp-content/uploads/2025/07/Mask-Group-Large.png");*/
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 100% 100%;
}
.service-item .et_pb_blurb_content {
    padding: 17px 17px 17px 0px;
}
.col-service-item {
	transition: all .4s !important;
}
.col-service-item:hover {
    transform: translatey(-5px) !important;
}
/*.col-service-item:hover:before {
    transform: rotate(45deg) !important;
}*/
.service-item .et_pb_main_blurb_image {
    width: 60px !important;
}
.section-objectif .et_pb_row.et_pb_gutters3 {
    overflow: visible !important;
    align-items: center;
}
.section-objectif .et_pb_column_11 {
    padding: 0 !important;
    /*margin-right: 0 !important;*/
}
.section-objectif .et_pb_column_12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}
.section-objectif .objectif-item {
    display: flex;
    align-items: center;
    width: 231px;
    height: 222px;
    margin-right: 10px !important;
}
.avantage-item {
	cursor: pointer !important;
}
.avantage-item .et_pb_blurb_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.avantage-item .et_pb_blurb_description {
    width: 43%;
}
.avantage-item .et_pb_main_blurb_image {
	display: none !important;
}
.avantage-item.active {
    border-radius: 10px !important;
	background-color: #fff !important;
}
.avantage-item.active:before {
    color: #0b8f36 !important;
}
.avantage-item.active .et_pb_blurb_description {
	color: #404a3d !important;
}
.avantage-item.active h3.et_pb_module_header {
	color: #404a3d !important;
}
.galerie-accueil .et_pb_gallery_item:first-child {
	width: 51% !important;
}
.galerie-accueil .et_pb_gallery_item {
    margin-right: 20px !important;
    margin-bottom: 30px !important;
    border-radius: 10px !important;
}
.galerie-accueil .et_pb_gallery_item:last-child {
    margin-right: 0px !important;
    margin-bottom: 0px !important;
}
.galerie-accueil .et_pb_gallery_item img {
    border-radius: 10px !important;
    height: 180px !important;
    object-fit: cover !important;
}
.galerie-accueil .et_pb_gallery_image.landscape {
	border-radius: 10px !important;
}
.galerie-accueil span.et_overlay.et_pb_inline_icon {
	border-radius: 10px !important;
}
.galerie-accueil .et_overlay:before {
    top: 59% !important;
	left: 55% !important;
    font-size: 20px !important;
}
.qualite-item h3.et_pb_module_header {
    margin-bottom: 13px !important;
}
.partenariat-slider .slick-track {
	animation: textScrolling 80s linear infinite;
    overflow: visible !important;
}
/*.partenariat-slider .slick-slide {
	animation: textScrolling 5s linear infinite;
}*/
.partenariat-slider .slick-slide {
	display: flex;
	justify-content: center;
	align-items: center;
    height: 90px !important;
	margin-right: 20px !important;
}
.btn-explorer .et_pb_blurb_container {
	padding-left: 0 !important;
}

/**** ENTREPRISE ****/
body #page-container .desc-p span {
	font-family: 'Inter Regular', Helvetica, Arial, Lucida, sans-serif !important;
}
.mission-item .et_pb_main_blurb_image {
	width: 22px !important;
}
body #page-container .count-item .percent {
    margin-bottom: 10px;
}
.count-item {
	overflow: visible !important;
}
.count-item p {
	visibility: visible !important;
}
.count-item.item-first span.percent-sign {
	display: none !important;
}
.count-item.item-first.item-second span.percent-sign {
    display: inline !important;
    font-size: 50px;
}
.section-concept .objectif-item {
    display: flex;
    align-items: center;
    width: 231px;
    height: 222px;
    margin-right: 10px !important;
}
.section-concept>.et_pb_row.et_pb_gutters3 {
    display: flex;
    align-items: center;
}
.section-concept .et_pb_column_single {
	padding: 0 !important;
    z-index: 1 !important;
}
.section-concept .concept-item {
	height: 199px !important;
}
.section-concept .concept-item .et_pb_main_blurb_image {
    text-align: left;
}
.section-concept .concept-item img {
	filter: brightness(0) invert(1);
}
/**** PAGE INNER ****/
/*body:not(.home) #page-container h1 {
	font-size: 42px !important;
	line-height: 52px !important;
}*/
body #page-container .accordeon-product-info ul>li {
	   /* font-family: 'Inter light', Helvetica, Arial, Lucida, sans-serif !important;*/
    font-family: 'Signika Regular', Helvetica, Arial, Lucida, sans-serif;
}
body #page-container .accordeon-product-info ul>li>a {
	color: #fff !important;
}


/**** PRODUCTION ALIMENTAIRE ****/
.section-avantage-inner .avantage-inner-item .et_pb_toggle {
	margin-bottom: 10px !important;
    border-radius: 6px !important;
}
.galerie-slider.first-section {
    position: relative;
	height: 420px !important;
}
.galerie-slider {
    position: relative;
	height: 570px !important;
    background-color: #fff !important;
    border-radius: 15px !important;
}
.galerie-slider:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	z-index: 2;
	opacity: 0.2;
	border-radius: 15px !important;
}
.galerie-slider .et_pb_gallery_item {
	height: 570px !important;
}
.galerie-slider .et_pb_gallery_item img {
	height: 570px !important;
}
.galerie-slider a.et-pb-arrow-prev {
	left: 22px !important;
    opacity: 1;
    color: #fff !important;
    border-radius: 5px;
    background-color: #0b8f36;
}
.galerie-slider a.et-pb-arrow-next {
    right: 22px !important;
    opacity: 1;
    color: #fff !important;
    border-radius: 5px;
    background-color: #0b8f36;
}
.galerie-slider-first {
    position: relative;
	height: 450px !important;
    border-radius: 15px !important;
    background-color: #fff !important;
}
.galerie-slider-first:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	z-index: 2;
	opacity: 0.2;
	border-radius: 15px !important;
}
.galerie-slider-first .et_pb_gallery_item {
	height: 450px !important;
}
.galerie-slider-first .et_pb_gallery_item img {
	height: 450px !important;
}
.galerie-slider-first a.et-pb-arrow-prev {
	left: 22px !important;
    opacity: 1;
    color: #fff !important;
    border-radius: 5px;
    background-color: #0b8f36;
}
.galerie-slider-first a.et-pb-arrow-next {
    right: 22px !important;
    opacity: 1;
    color: #fff !important;
    border-radius: 5px;
    background-color: #0b8f36;
}
.capacite-item .et_pb_main_blurb_image {
    width: 20px;
}
.capacite-item .et_pb_blurb_container {
    padding-left: 8px !important;
}
.avantage-inner-tab .product-list>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    margin-bottom: 50px !important;
}
.avantage-inner-tab .product-list>ul>li {
	height: 0 !important;
    border-radius: 5px !important;
}
.avantage-inner-tab .product-list ul>li:not(:last-child) {
	margin-right: 7px !important;
}
.avantage-inner-tab .product-list ul>li>a {
	padding-top: 13px !important;
	padding-bottom: 13px !important;
}
.avantage-inner-tab .product-list .et_pb_tab_active {
	border-right: none !important;
    border: none !important;
}
.avantage-inner-tab .et_pb_tabs_controls li {
	border: none !important;
}
.accordeon-product-info .et_pb_toggle:not(:last-child) {  

   margin-bottom: 10px !important;
}
.accordeon-product-info .et_pb_toggle {
     border-radius: 5px !important;
}
body #page-container .avantage-inner-item .et_pb_toggle_content a {
   color: #fff !important;
}
.accordeon-product-info .et_pb_toggle ul {
   position: relative;
   margin-top: 10px !important;
}
.accordeon-product-info .et_pb_toggle ul>li {
  padding-left: 30px;
}
.accordeon-product-info .et_pb_toggle ul>li {
  position: relative;
}
.accordeon-product-info .et_pb_toggle ul>li:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 3px;
  left: 0;
  background-image: url('/wp-content/uploads/2025/07/check-inin.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
.accordeon-product-info .et_pb_toggle {
   background-color: #0b8f36;
}
.accordeon-product-info .et_pb_toggle_title {
  color: #fff !important;
  font-size: 18px !important;
}
.accordeon-product-info .et_pb_toggle_title:before {
  color: #fff !important;
}
.accordeon-product-info .et_pb_toggle_content {
  color: #fff !important;
}
.accordeon-product-info .et_pb_toggle_open {
   background-color: #7e141a;
}

/**** PRODUCTION SANITAIRE ****/
.super-ligne .et_pb_column {
	transition: all .4s !important;
}
.super-ligne .et_pb_column:hover {
	transform: translatey(-5px) !important;
}
.super-ligne .et_pb_column img {
	transition: all .4s !important;
}
/*.super-ligne .et_pb_column:hover img {
	transform: scalex(-1) !important;
}*/

/**** CONTACT PAGE ****/
body #page-container .coordonnee-item-ni .et_pb_main_blurb_image {
    width: 38px !important;
}
body #page-container .coordonnee-item-ni .et_pb_blurb_container {
    padding-left: 12px !important;
}

@media screen and (min-width: 1600px) {
	body #page-container .img-big-concept {
		overflow: visible !important;
	}
    body #page-container .img-big-concept img {
		width: 130% !important;
        max-width: 130% !important;
        height: 800px;
	}
    body #page-container .img-big-concept .et_pb_image_wrap {
    	overflow: visible !important;
	}
}

@media screen and (min-width: 1500px) {
    body #page-container .img-large {
        max-width: 140% !important;
        width: 140% !important;
        position: relative;
        left: -226px !important;
        overflow: visible !important;
    }
    body #page-container .img-large img {
        object-fit: contain !important;
        height: 550px !important;
    }
	body #page-container .img-large {
		position: relative !important;
		/*left: -360px !important;*/
        left: 210px !improtant;
        overflow: visible !important;
	}
	body #page-container .img-large .et_pb_image_wrap {
		overflow: visible !important;
	}
    /*body #page-container .img-large img {
        max-width: 126% !important;
        width: 126% !important;
    }*/
	body #page-container .super-ligne {
		max-width: 1410px !important;
	}
	body #page-container .chiffre-cles {
		padding-top: 25px !important;
		padding-bottom: 50px !important;
	}
}

@media screen and (min-width: 1025px) {
	.count-item:not(:last-child):before {
    	content: "";
    	width: 100%;
    	height: 80%;
    	position: absolute;
    	top: 27px;
    	right: -18px;
    	border-right: 2px dashed #7e141aa3;
    	background-color: transparent;
	}
}

@media screen and (min-width: 981px) {
	body #page-container .section-about-us .img-about {
		margin-right: 20px !important;
	}
    .header .menu-header #menu-menu-principal>li>a {
    	padding: 38.5px 0 !important;
	}
    .section-objectif .objectif-item.last-item {
		margin-right: 0 !important;
	}
	.section-concept .objectif-item.last-item {
		margin-right: 0 !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	body #page-container .col-service-item {
		width: 48% !important;
	}
	body #page-container .col-service-item:before {
		content: "";
    	display: block;
    	width: 34px;
    	height: 34px;
    	position: absolute;
    	bottom: 4px;
    	right: 5px;
    	background-image: url(/wp-content/uploads/2025/07/btn-green.svg);
    	background-size: contain;
    	background-repeat: no-repeat;
    	background-position: right bottom;
	}
    .service-item .et_pb_blurb_content {
    	padding: 30px 30px 30px 10px !important;
	}
    body #page-container .col-transform-item {
		width: 48% !important;
	}
}

@media screen and (max-width: 1024px) {
	body #page-container .section-objectif .et_pb_row.et_pb_gutters3 {
    	display: flex;
    	flex-direction: column-reverse;
    	align-items: center;
        max-width: 1200px !important;
		width: 90% !important;
	}
	body #page-container .section-objectif .et_pb_column_11 {
		margin-bottom: 0 !important;
	}
    body #page-container .section-objectif .et_pb_column_12 {
		margin-bottom: 0 !important;
	}
	body #page-container .galerie-accueil .et_pb_gallery_item {
		width: 100% !important;
        margin-bottom: 30px !important;
	}
    body #page-container .galerie-accueil .et_pb_gallery_item img {
		width: 100% !important;
	} 
    body #page-container .avantage-item .et_pb_blurb_description {
    	width: 53% !important;
	}
	body #page-container .footer {
		background-size: 100% 25% !important;
	}
    .section-concept>.et_pb_row.et_pb_gutters3 {
   		display: flex;
    	align-items: center;
    	flex-direction: column;
	}
    .section-objectif .objectif-item.fin-item {
    	margin-right: 0 !important;
	}
	.section-objectif .objectif-item {
		width: 49% !important;
	}
	.section-objectif .objectif-item.bottom-space {
		margin-bottom: 10px !important;
	}
    .section-concept .objectif-item.fin-item {
    	margin-right: 0 !important;
	}
	.section-concept .objectif-item {
		width: 49% !important;
	}
	.section-concept .objectif-item.bottom-space {
		margin-bottom: 10px !important;
	}
	.section-concept .objectif-list .concept-item.concept-last-item {
		margin-right: 0 !important;
	}    
}

@media screen and (max-width: 767px) {
	/*.banner {
		height: calc(100vh - 86px) !important;
	}*/
	.service-item {
    	mask-image: url("/wp-content/uploads/2025/07/Mask-Group-Large.png");
		mask-repeat: no-repeat;
		mask-position: center;
		mask-size: 100% 100%;
	}
	body #page-container .col-service-item:not(:last-child) {
		margin-bottom: 30px !important;
	}
	body #page-container .col-service-item:before {
		content: "";
    	display: block;
    	width: 34px;
    	height: 34px;
    	position: absolute;
    	bottom: 0px;
    	right: 3px;
    	background-image: url(/wp-content/uploads/2025/07/btn-green.svg);
    	background-size: contain;
    	background-repeat: no-repeat;
    	background-position: right bottom;
	}
    body #page-container .col-transform-item:not(:last-child) {
		margin-bottom: 30px !important;
	}
    body #page-container .objectif-item:not(:last-child) {
		margin-bottom: 30px !important;
	}
    .avantage-item .et_pb_blurb_container {
    	display: flex;
    	flex-direction: column;
    	justify-content: center;
   	 	align-items: flex-start;
    	padding-left: 90px;
	}
    body #page-container .avantage-item .et_pb_blurb_description {
        width: 100% !important;
    }
	body #page-container .partenariat-slider .slick-slide {
		height: 80px !important;
	} 
	body #page-container .concept-item:not(:last-child) {
		margin-bottom: 30px !important;
	}
    body #page-container .footer {
		background-size: contain !important;
	}
    body #page-container .section-objectif .objectif-item {
        width: 48% !important;
        padding-right: 20px !important;
    }
    body #page-container .section-concept .objectif-item {
        width: 48% !important;
        padding-right: 20px !important;
    }
	body #page-container .section-objectif .objectif-item h3.et_pb_module_header {
		font-size: 20px !important;
        line-height: 25px !important;
	}
	body #page-container .section-objectif .objectif-list .objectif-item {
		margin-bottom: 10px !important;
	}
    body #page-container .section-objectif .objectif-list .objectif-item:last-child {
		margin-bottom: 0px !important;
	}
    body #page-container .section-concept .objectif-list .objectif-item {
		margin-bottom: 10px !important;
	}
    body #page-container .section-concept .objectif-list .objectif-item:last-child {
		margin-bottom: 0px !important;
	}
    .section-concept .objectif-item .et_pb_main_blurb_image {
		margin-bottom: 10px !important;
	}
	body #page-container .section-concept .objectif-item {
        align-items: flex-start !important;
		height: auto !important;
        padding-bottom: 40px !important;
	} 
	body #page-container .section-concept .concept-item.no-space-bottom {
		margin-bottom: 0 !important;
	}
}

/**** CSS SUPPLEMENTAIRE ****/
/**** CUSTOM CSS BY NIIX ****/

/**** GLOBAL CSS ****/

body #page-container a {
    text-decoration: none !important;
}
body #page-container .img-cover img {
    object-fit: cover !important;
}
body #page-container ul {
    list-style-type: none !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
}
body #page-container h1, h2, h3, h4 {
    padding: 0 !important;
    margin: 0 !important;
}
.et-db #et-boc .et-l .et-fb-form__toggle h3 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
/*et-fb-app-frame et-has-admin-bar*/
body #page-container p {
    margin: 0 !important;
}

/**** BANNER INNER ****/
body #page-container .banner-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/**** ROW DIMENSION ****/
body #page-container .ligne-row {
    max-width: 1200px !important;
    width: 90% !important;
}

/**** IMG HOVER EFFECTS ANIMATION CSS ****/
.img-hover {
	transition: none !important;
}
.img-hover img {
	overflow: hidden !important;
}
.img-hover .et_pb_image_wrap {
	overflow: hidden !important;
}
.img-hover .et_pb_image_wrap img{
	transition: all 1s !important;
}
.img-hover:hover img {
	transform: scale(1.1) !important;
}
.img-hover-anim:before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-25deg);
	transition: all 1s;
    z-index: 1;
    pointer-events: none !important;
}
.img-hover-anim:hover:before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}
@keyframes shine {
    100% {
        left: 125%;
    }
}

.resume-img-hover {
	overflow: hidden !important;
}
.resume-img-hover .et_pb_main_blurb_image {
	position: relative;
	overflow: hidden !important;
}
.resume-img-hover .et_pb_main_blurb_image:before {
	position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-25deg);
	transition: all 1s;
    z-index: 1;
    pointer-events: none !important;
}
.resume-img-hover:hover .et_pb_main_blurb_image:before {
	-webkit-animation: shine 2s;
    animation: shine 2s;
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
body #page-container .img-hover {
    transition: none !important;
}

/**** MENTIONS LEGALES ****/
body #page-container .mentions-legales p {
	font-weight: 400 !important;
}
body #page-container .mentions-legales h2 {
    margin-bottom: 15px !important;
}
body #page-container .mentions-legales p{
	padding: 0 !important;
}
body #page-container .mentions-legales .espace {
    margin-bottom: 20px !important;
    padding: 0 !important;
}
body #page-container .mentions-legales .first-section .espace {
    margin-bottom: 10px !important;
}
body #page-container .mentions-legales .first-section p:last-child {
    margin-bottom: 20px !important;
}
body #page-container .mentions-legales p {
    padding-bottom: 0 !important;
}

/**** DESACTIVE SCROLL PAGE ****/
body #page-container{
    overflow: hidden !important;
}

/**** DESACTIVE SCROLL ON POPUP ****/
body.mfp-zoom-out-cur {
    overflow: hidden !important;
}
body.mfp-zoom-out-cur .mfp-bg.mfp-fade.mfp-ready, body.mfp-zoom-out-cur .mfp-wrap {
    position: fixed !important;
    top: 0 !important;
}

/**** REALISATION PAGE ****/
.realisation ul {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent !important;
    margin-bottom: 35px !important;
}
.realisation ul>li {
    border-right: none !important;
    padding-top: 5px !important;
    padding-bottom: 6px !important;
	margin-left: 7px !important;
    border-radius: 4px !important;
}
.realisation ul>li>a {
	padding-left: 25px !important;
    padding-right: 25px !important;
}
.realisation .et_pb_all_tabs {
	background-color: transparent !important;
}
.galerie-realisation .et_pb_gallery_item {
    width: 280px !important;
    margin: 0px 20px 20px 0px !important;
}
.realisation ul>li:first-child {
	margin-left: 0 !important;
}
.realisation .et_pb_tab {
    padding: 0 !important;
}
.galerie-realisation img {
    height: 250px !important;
    object-fit: cover;
    border-radius:  5px !important;
}
.galerie-realisation .before-after img {
    height: 350px !important;
    object-fit: fill !important;
    border-radius:  5px !important;
}
body #page-container .galerie-realisation .before-after {
    max-width: 380px !important;
    width: 100% !important;
}
.galerie-realisation .et_pb_gallery_item .et_overlay {
	border-radius: 5px !important;
    border: none !important;
}
.galerie-realisation .et_pb_gallery_item .et_overlay:before {
    font-size: 18px !important;
    left: 55% !important;
    top: 55%;
}
.realisation-before-after .et_pb_column {
	margin-right: 20px !important;
    padding-right: 0;
    width: 230px !important;
}
.realisation-before-after .et_pb_column:last-child {
	margin-right: 0 !important;
}
.galerie-realisation .before-after:not(:last-child) {
	margin-right: 20px !important;
}
.galerie-realisation .twentytwenty-overlay {
    border-radius: 5px !important;
}

/**** CONTACT SELECT ****/
.forminator-ui#forminator-module-372.forminator-design--default .forminator-select2 + .forminator-select .selection .select2-selection--single[role="combobox"] {
    border-color: #000000;
    background-color: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
}


/**** FOOTER CUSTOM CSS ****/
.menu-footer .sub-menu {
    display: none;
}
.menu-footer ul#menu-menu-footer>li {
	padding-left: 0 !important;
	padding-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    transition: all .4s;
}
.menu-footer ul#menu-menu-footer>li:hover {
	padding-left: 7px !important;
}
.menu-footer ul#menu-menu-footer>li:last-child {
	margin-bottom: 0 !important;
}
.menu-footer ul#menu-menu-footer>li>a {
	padding-bottom: 0 !important;
}
.menu-footer .et_pb_menu__menu {
	display: block;
}
.menu-footer .et_mobile_nav_menu {
	display: none !important;
}
.menu-footer #menu-menu-footer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin-left: 0 !important;
}
.menu-footer .et_pb_menu__wrap {
	justify-content: flex-start;
}
.menu-footer ul>li>a:after {
    display: none;
}
.infos-plus {
	transition: all .4s;
}
.infos-plus:hover {
	padding-left: 7px !important;
}
.infos-plus .et_pb_blurb_description {
 	display: flex;	
    align-items: center;
}
.coordonnee-item .et_pb_blurb_container {
    padding-left: 20px !important;
}
.infos-plus .et_pb_blurb_container {
	padding-left: 0 !important;
}
.separator-footer {
    height: 0 !important;
}
.footer .coordonnee-footer span {
    font-family: 'Inter light', Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px !important;
}

/**** PAGE 404 ANIMATION EFFECTS ****/
.bounce2 {
    animation: bounce2 2s ease infinite;
}
  @keyframes bounce2 {
      0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
      40% {transform: translateY(-20px);}
      60% {transform: translateY(-15px);}
}

/**** COOKIEYES CUSTOM CSS ****/
.cky-btn-revisit-wrapper {
    width: 30px !important;
    height: 30px !important;
}
.cky-btn-revisit-wrapper .cky-btn-revisit img {
    height: 20px !important;
    width: 20px !important;
}

/**** PLAN DU SITE CUSTOM CSS ****/
.site-map h3 {
    display: none !important;
}
.site-map br {
    display: none !important;
}
.site-map ul {
	margin: 0 !important;
}
.site-map li {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    transition: all .4s;
}
.site-map li:hover {
    padding-left: 10px;
}
.site-map li:last-child {
    margin-bottom: 0px;
}
.site-map li:before {
    content:'';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/uploads/2025/07/leaf-chapo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    margin-right: 10px;
    filter: brightness(0);
}

/**** BTN BACK TO TOP CUSTOM CSS ****/
span.et_pb_scroll_top.et-pb-icon.et-hidden {
	display: none !important;
    width: 50px;
    height: 50px;
    background-color: transparent;
}
span.et_pb_scroll_top.et-pb-icon.et-visible {
    display: none !important;
    width: 50px;
    height: 50px;
    right: 10px !important;
    /*border-radius: 50%;
    background-color: #0b8f36;
    border: 5px solid #fff;*/
    background-color: transparent !important;
}
.et_pb_scroll_top:before {
    display: none !important;
    opacity: 0 !important;
}
.et_pb_scroll_top:after {
    content: "" !important;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('/wp-content/uploads/2025/07/btn-top.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
/*.et_pb_scroll_top.et-pb-icon {
    padding: 0 4px 3px 4px;
    border-radius: 8px;
    background-color: #4EAE30;
    margin-right: 10px;
    transition: 0.3s all;
}*/
.et_pb_scroll_top.et-pb-icon:hover {
    transition: 0.3s all;
    transform: scale(1.1);
}
/*.et_pb_scroll_top.et-pb-icon {
  animation: pulse 1s infinite ease-in-out alternate;
}*/
@keyframes pulse {
  from { transform: scale(0.8); }
  to { transform: scale(1.2); }
}

#scrollToTop {
position: fixed;
bottom: 120px;
right: 10px;
width: 60px;
height: 60px;
cursor: pointer;
z-index: 99999;
display: none;
}

#scrollToTop svg {
  position: absolute;
  top: 0;
  left: 0;
}

#scrollToTop .arrow-up {
  position: absolute;
  top: 18px;
  left: 19px;
  font-size: 20px;
  color: red;
  font-weight: bold;
  opacity: 0 !important;
}
div#scrollToTop:before {
    content: "";
    display: block;
    width: 54px;
    height: 54px;
    position: absolute;
    top: 3px;
    left: 3px;
    background-image: url(/wp-content/uploads/2025/07/btn-top.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}



/**** DAILYWEB COPYRIGHT CUSTOM CSS ****/
.daily {
    padding: 7px 60px;
    background-image: url('/wp-content/uploads/2025/07/daily_web_white-.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/**** RESPONSIVE SITE ****/

@media screen and (min-width: 1500px) {
	body #page-container .banner-inner {
		min-height: 450px !important;
	}
}

@media screen and (min-width: 1312px) and (max-width: 1333px) {
	.galerie-realisation .et_pb_gallery_item {
    	width: 275px !important;
    	margin: 0px 20px 20px 0px !important;
	}
}

@media screen and (min-width: 1180px) and (max-width: 1311px) {
	.galerie-realisation .et_pb_gallery_item {
        width: 245px !important;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1179px) {
	.galerie-realisation .et_pb_gallery_item {
        width: 210px !important;
	}
    .galerie-list .et_pb_gallery_items {
    	display: flex;
    	flex-wrap: wrap;
    	margin-left: 10px !important;
	}
}

@media screen and (min-width: 981px) and (max-width: 1023px) {
	.galerie-realisation .et_pb_gallery_item {
        width: 200px !important;
	}
    .galerie-list .et_pb_gallery_items {
    	display: flex;
    	flex-wrap: wrap;
    	margin-left: 10px !important;
	}
}

@media screen and (min-width: 981px) {
    body #page-container .banner {
        height: calc(100vh - 100px) !important;
    }
	.galerie-realisation .et_pb_gallery_items {
		margin-left: 0px !important;
	}
	.realisation ul>li {
		height: 55px !important;
	}
}

@media screen and (min-width: 768px) {
	body:not(.home):not(.parent-pageid-43) #page-container h1 {
		font-size: 42px !important;
		line-height: 52px !important;
	}
}

@media screen and (max-width: 1024px) {
	body #page-container h1 {
		font-size: 45px !important;
        line-height: 50px !important;
	}
    body:not(.home) #page-container h1 {
		font-size: 45px !important;
        line-height: 50px !important;
	}
    body #page-container h2 {
		font-size: 36px !important;
        line-height: 42px !important;
	}
}

@media screen and (max-width: 980px) {
    body #page-container .header .coordonnee-header.phone .et_pb_blurb_container {
     	display: block !important;
  	}
  	body #page-container .header .menu-header .et_mobile_nav_menu {
     	margin: 0 !important;
  	}
	body #page-container .coordonnee-header {
		border-radius: 3px !important;
	}
	body #page-container .header .menu-header li ul.sub-menu {
		width: 100% !important;
		padding: 20px !important;
	}
    body #page-container .banner {
        height: calc(100vh - 86px) !important;
    }
    body #page-container .banner-inner {
        min-height: calc(100vh - 86px) !important;
    }
	.avantage-inner-tab .product-list>ul {
        flex-direction: column !important;
		margin-bottom: 30px !important;
	}
	.avantage-inner-tab .product-list>ul>li {
        display: flex;
        justify-content: center;
        width: 100%;
        text-align: center;
		height: auto !important;
	}
    .super-ligne .et_pb_column:hover {
		transform: none !important;
	}
    .col-transform-item:hover {
		transform: none !important;
	}
    .col-service-item:hover {
		transform: none !important;
	}
    .img-full img {
        width: 100% !important;
    }
    .img-full .et_pb_image_wrap {
        width: 100% !important;
    }
	.menu-header .mobile_menu_bar {
    	border-radius: 3px;
    	background-color: #1a9120 !important;
	}
	.menu-header #mobile_menu1 {
		border-radius: 5px !important;
	}
	.menu-header #mobile_menu1 li:hover a {
		color: #000 !important;
	}
	.menu-header .mobile_menu_bar:before {
		color: #fff !important;
	}
	.menu-header .et_pb_menu_inner_container.clearfix {
		position: unset !important;
	}
	.menu-header #mobile_menu1 {
		padding: 30px 20px !important;
	}
	.menu-header #mobile_menu1 li a:hover {
        opacity: 1 !important;
        color: #fff !important;
		background-color: #1a9120 !important;
	}
    .menu-header #mobile_menu1>li.current-menu-item>a {
        opacity: 1 !important;
        color: #fff !important;
		background-color: #1a9120 !important;
	}
	body #page-container .navbar .menu-header li>a.menu-link.active {
		color: #fff !important;
		background-color: #1a9120 !important;
	}
	body #page-container .menu-header li>a.menu-link {
		color: #000 !important;
	}
    body #page-container .menu-header li>a.menu-link:hover {
		color: #fff !important;
	}
	.menu-header #mobile_menu1 li ul.sub-menu>li {
		padding-left: 0 !important;
	}
	.menu-header .et_mobile_nav_menu {
		margin: 0 !important;
	}
    body #page-container .menu-header .mobile_nav.opened .et_mobile_menu{
        transition: all .4s !important;
        display: block !important;
    }
    body #page-container .menu-header .mobile_nav.closed .et_mobile_menu{
       display: none !important;
       transition: all 4s !important;
    }
	.realisation ul>li {
		height: auto !important;
	}
    body:not(.home) #page-container .title-inner h1 {
        font-size: 36px !important;
        line-height: 42px !important;
    }
	body:not(.home) #page-container .title-inner {
		margin-bottom: 20px !important;
	}
    .galerie-slider.first-section {
    	position: relative;
		height: 350px !important;
	}
    .galerie-slider {
		height: 350px !important;
	}
    .galerie-slider .et_pb_gallery_item {
		height: 350px !important;
	}
	.galerie-slider .et_pb_gallery_item img {
		height: 350px !important;
	}
    .galerie-slider-first {
		height: 350px !important;
	}
    .galerie-slider-first .et_pb_gallery_item {
		height: 350px !important;
	}
	.galerie-slider-first .et_pb_gallery_item img {
		height: 350px !important;
	}
	body #page-container .banner-slider .et-pb-slider-arrows {
		display: none !important;
	}
    body #page-container .realisation ul {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	body #page-container .realisation ul>li {
		width: 100%;
		max-width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
        margin-bottom: 15px !important;
        margin-left: 0 !important;
	}
	body #page-container .realisation ul>li:last-child {
		margin-bottom: 0 !important;
	}
	body #page-container .header .coordonnee-header .et_pb_blurb_container {
		display: none !important;
	}
	body #page-container .realisation .et_pb_gallery_item {
        max-width: 100% !important;
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 20px !important;
	}
	body #page-container .realisation .et_pb_gallery_item:last-child {
		margin-bottom: 0 !important;
	}
	.galerie-realisation img {
		width: 100% !important;
	}
    .et_animated {
        opacity: 1 !important;
    }
    .et_pb_section *:not(.et_pb_row--with-menu, .logo-slider, .arrow_gauche.slick-arrow .arrow_droite.slick-arrow, .slick-list, .slick-track, .slick-slide) {
        -o-transition-property: none!important;
        -moz-transition-property: none!important;
        -webkit-transition-property: none!important;
        transition-property: none!important;
        -o-transform: none!important;
        -moz-transform: none!important;
        -ms-transform: none!important;
        -webkit-transform: none!important;
        transform: none!important;
        -webkit-animation: none!important;
        -moz-animation: none!important;
        -o-animation: none!important;
        animation: none !important;
    }
}

@media screen and (max-width: 767px) {
    body #page-container .header .coordonnee-header.phone .et_pb_blurb_container {
        display: none !important;
    }
    body #page-container .header .coordonnee-header.phone .et_pb_main_blurb_image {
        width: 100% !important;
    }
    body #page-container .banner {
        height: calc(100vh - 86px) !important;
    }
    body #page-container .banner-inner {
       min-height: calc(100vh - 86px) !important;
    }
    body #page-container h1 {
       font-size: 33px !important;
       line-height: 40px !important;
    }
	body:not(.home) #page-container h1 {
	   font-size: 33px !important;
       line-height: 40px !important;
	}
	body:not(.home):not(.parent-pageid-43) #page-container h1 {
	   font-size: 30px !important;
       line-height: 35px important;
	}
    body:not(.home) #page-container .title-inner h1 {
        font-size: 28px !important;
        line-height: 33px;
    }
    .avantage-inner-tab .product-list>ul>li:not(:last-child) {
		margin-bottom: 8px !important;
        margin-right: 0 !important;
	}
    body #page-container h2 {
       font-size: 28px !important;
       line-height: 34px !important;
    }
    body #page-container .mentions-legales h2 {
       font-size: 26px !important;
    }
    body #page-container .header .topbar .coordonnee-header img {
       filter: brightness(0) !important;
    }
    .header .topbar .et_pb_blurb_container {
       display: none !important;
    }
    .banner-slider {
       padding: 0 !important;
    }
    .banner-slider br {
       display: none !important;
    }
    .galerie-slider.first-section {
    	position: relative;
		height: 300px !important;
	}
    .galerie-slider {
		height: 300px !important;
	}
    .galerie-slider .et_pb_gallery_item {
		height: 300px !important;
	}
	.galerie-slider .et_pb_gallery_item img {
		height: 300px !important;
	}
    .galerie-slider-first {
		height: 300px !important;
	}
    .galerie-slider-first .et_pb_gallery_item {
		height: 300px !important;
	}
	.galerie-slider-first .et_pb_gallery_item img {
		height: 300px !important;
	}
    .banner-slider .et_pb_slides .et_pb_slide {
       padding-left: 15px !important;
       padding-right: 15px !important;
    }
    body #page-container .galerie-realisation img {
       width: 100% !important;
    }
    body #page-container .galerie-list {
       overflow: hidden !important;
    }
    .realisation ul {
       display: flex;
       justify-content: center;
       align-items: center;
       flex-direction: column !important;
       background-color: transparent !important;
       margin-bottom: 35px !important;
    }
    .realisation ul>li {
       margin-left: 0 !important;
       margin-bottom: 10px !important;
       display: flex;
       justify-content: center;
       align-items: center;
       width: 100% !important;
    }
    body #page-container .realisation .et_pb_gallery_item {
       max-width: 100% !important;
       width: 100% !important;
       margin-right: 0 !important;
    }
    body #page-container .realisation .et_pb_gallery_item img{
       max-width: 100% !important;
       width: 100% !important;
    }
    .realisation .et_pb_gallery_item .et_pb_gallery_image.landscape{
       max-width: 100% !important;
       width: 100% !important;
    }
    body #page-container .count-item {
    	min-height: 176px !important;
	}
    body .hexagon {
        display: none !important;
	}
    body .polygon {
        display: none !important;
	}
    body.home .avantages-listes .avantage-item .et_pb_blurb_container {
    	display: flex !important;
    	align-items: flex-start !important;
    	padding-left: 100px !important;
	}
    body #page-container .img-great {
        max-width: 100% !important;
        width: 100% !important;
    }
    body #page-container .img-great .et_pb_image_wrap  {
        max-width: 100% !important;
        width: 100% !important;
    }
    body #page-container .img-great .et_pb_image_wrap img {
        max-width: 100% !important;
        width: 100% !important;
    }
    /*#scrollToTop {
        display: none !important;
    }*/
    span.et_pb_scroll_top.et-pb-icon.et-hidden {
       display: inline !important;
	}
	span.et_pb_scroll_top.et-pb-icon.et-visible {
    	display: inline !important;
	}
}
@media screen and (max-width: 500px) {
	body #page-container .galerie-realisation .et_pb_gallery_item {
		margin-bottom: 25px !important;
	}
    body #page-container .galerie-realisation .et_pb_gallery_item:last-child {
		margin-bottom: 0 !important;
	}
    body #page-container .coordonnee-item-ni a {
		word-break: break-all !important;
	}
}

@media screen and (min-width: 480px) and (max-width: 767px) {
	body #page-container .count-item.before-last-item {
		margin-bottom: 0 !important;
	}
}

@media screen and (max-width: 423px) {
	body #page-container .galerie-list span.et_overlay:before {
		left: 54% !important;
	}
    body #page-container .captcha-ni .forminator-g-recaptcha {
    	width: 302px !important;
    	margin-left: 0px !important;
	}
    .et-db #et-boc .et_pb_module .forminator-ui.forminator-custom-form[data-design=default] .forminator-field-captcha, .forminator-ui.forminator-custom-form[data-design=default] .forminator-field-captcha {
		 overflow: visible !important;
	}
    body #page-container .form-contact {
        padding-left: 5px !important;
        padding-right: 5px !important;
        box-shadow: none !important;
        border-top: 1px solid !important;
        border-bottom: 1px solid !important;
        border-radius: 0 !important;
    }
    body #page-container .coordonne-item-contact .et_pb_blurb_description a {
        word-break: break-word !important;
    }
}
@media screen and (max-width: 380px) {
   	body #page-container h2 {
        font-size: 26px !important;
        line-height: 32px !important;
    }
}
@media screen and (max-width: 375px) {
	.banner-slider .et_pb_slide_description:after {
        content: "";
        display: block;
        width: 520px;
        height: 520px;
        position: absolute;
        top: -100px;
        left: -120px;
        background-image: url(/wp-content/uploads/2025/01/Mask-slider.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
        z-index: -1;
        opacity: 0.5;
    }
    body:not(.home) #page-container .title-inner h1 {
        font-size: 26px !important;
        line-height: 31px !important;
    }
}

@media screen and (max-width: 360px) {
    .banner-slider .et_pb_slide_description:after {
        content: "";
        display: block;
        width: 500px;
        height: 500px;
        position: absolute;
        top: -100px;
        left: -110px;
        background-image: url(/wp-content/uploads/2025/01/Mask-slider.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
        z-index: -1;
        opacity: 0.5;
    }
	body #page-container .social-link {
		margin-left: 0 !important;
	}
    body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button {
         padding-left: 30px !important;
         padding-right: 30px !important;
	}
    body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button:after {
        display: none !important;
    }
    body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button.cta:after {
       display: none !important;
	}
}

@media screen and (max-width: 359px) {
	body #page-container .coordonnee-item-ni a {
		word-break: break-all !important;
	}
	body #page-container .captcha-ni .forminator-g-recaptcha {
		margin-left: -13px !important;
	}
	body #page-container .form-contact {
		overflow: visible !important;
	}
	body #page-container .section-concept .objectif-item.concept-item:first-child {
		align-items: center !important;
    	padding-bottom: 10px !important;
	}
    body #page-container .section-concept .objectif-item.concept-item {
        width: 100% !important;
        min-height: 180px !important;
        margin-right: 0px !important;
    }
	body #page-container .section-concept .objectif-item.concept-item.no-space-bottom {
		margin-bottom: 10px !important;
	}
	body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button:after {
		display: none !important;
	}
    body.et_pb_button_helper_class #page-container .et_pb_section a.et_pb_button {
    	position: relative;
    	overflow: hidden !important;
    	z-index: 0 !important;
    	padding: 13px 22px 13px 22px !important;
	}
    body #page-container .count-item {
    	min-height: 165px !important;
	}
}