/*
Theme Name: SoHappy Theme Astra Gutenberg
Theme URI: https://www.sohappy-studio.com
Author: Agence So'Happy
Author URI: hhttps://www.sohappy-studio.com
Description: Theme for 0to1Solutions - Astra child theme
Template: astra
License: GNU General Public License v3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Version: 1.0.0
*/
/******************************/
/********** Variables CSS *****/
/******************************/
:root {
	--main-color: #96383C;
	--sub-color: #c9888b;
    --white: #fff;
	--grey: #787878;
	--black: #000;
    
	--main-font:'Poppins', sans-serif;
	--arial: "Arial Narrow", Arial, sans-serif;
}

/* --------------- GENERAL ---------------- */
html {
	font-size: 62.5%;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
	font-size: 1.5rem;
	font-family: var(--main-font);
	color: #000;
	background-color: var(--white)!important;

}
p {
	/* text-align: justify!important; */
}

h1, .entry-content h1 {
	text-align: center;
	text-transform: uppercase;
	color: var(--white);
	font-weight: 800;
	font-size: 5.5rem;
	line-height: 7rem;
}
h2, .entry-content h2 {
	position: relative;
	text-transform: uppercase;
	color: var(--main-color);
	font-size: 2.8rem;
	font-weight: 800;
	letter-spacing: 2px;
	margin: 20px 0;
	display: inline-block;
}
h3, .entry-content h3 {
	position: relative;
	color: var(--main-color);
	font-size: 2.2rem;
	font-weight: 800;
	letter-spacing: 2px;
	margin-bottom: 10px;
	display: inline-block;
	margin-top: 20px;
}
/* figure {
	transform: translate(0%, 120px);
} */
/* .social, .social-container {
	display: none;
} */
.entry-content h2::before {
	position: absolute;
	content: "";
	display: block;
	width: 50%;
	max-width: 100px;
	height: 1rem;
	bottom: 0;
	right: 0;
	background-color: rgba(var(--sub-color-min), .2);
	z-index: -1;
}
#devis h2 {
	text-align: right;
	display: block;
}
/* définit un style commun pour les paragraphes */
p, a, ul li {
	font-family: var(--main-font);
	font-weight: 400;
	line-height: 23px;
	font-size: 1.5rem;
	color: var(--black);
}
p, .entry-content p {
	margin-top: 0;
	margin-bottom: 2rem;
	color: var(--grey);
	/* text-align: justify!important; */
}
p a, .entry-content li a {
	padding-bottom: 2px;
	color: var(--grey);
	border-bottom: var(--sub-color) dotted 1px;
	text-decoration: none!important;
	color: inherit;
	font-weight: inherit;
}
.entry-content p a, .entry-content li a {
	color: var(--sub-color);
	
}
.entry-content p a:hover, .entry-content li a:hover, .entry-content h4 a:hover{
	color: var(--main-color);
	border-bottom-color: var(--main-color);
}

p a:hover {
	color: var(--main-color);
}

strong {
	font-weight: 700;
}
em {
    font-style: italic;
}
.color-black {
	color: var(--black);
}
.color-white {
	color: var(--white);
}

[ast-blocks-layout] .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
    max-width: 100%;
	border: 1px var(--sub-color) dotted;
	opacity: 0.5;
}
[data-section="section-header-mobile-trigger"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}
.ast-header-break-point .main-navigation .stack-on-mobile li {
    width: 100%;
	padding: 10px 0;
	border-bottom: 1px var(--sub-color) dotted;
}
#primary {
	margin-top: 125px!important;
}
/********* GENERALE **********/

.wp-block-group.alignfull.fond_couleur {
	margin: 40px;
}
.entry-content > .wp-block-columns
{
	padding: 0;
	margin: 50px 0;
}
.wp-block-quote:not(.has-text-align-right):not(.has-text-align-center) {
	border-left: 1px solid var(--main-color);
}

.wp-block-image figcaption {
    color: #fff;
	font-style: italic;
}
/*********BOUTON**********/
.wp-block-button .wp-element-button {
	position: relative;
	padding: 15px 40px;
	margin: 10px 0;
	min-width: 150px;
	height: fit-content;
	background-color: transparent;
	border: 4px solid var(--main-color);
	border-radius: 5px;
	box-sizing: border-box;
	line-height: normal;

	color: var(--main-color);
	font-family: var(--main-font);
	font-weight:800;
	font-size: 1.6rem;
	text-align: left;
	text-decoration: none!important;

	transition: all .3s ease-in-out;
}
.wp-block-button .wp-element-button:hover {
	background-color: var(--main-color);
	color: var(--white);
}

.wp-block-button .wp-element-button::after {
	position: absolute;
	content: "";
	display: block;
	width: 24px;
	height: 14px;
	background-color: var(--main-color);
	-webkit-mask-image: url(./assets/svg/picto_arrow.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;

	right: 7px;
	top: 50%;
	transform: translate(0,-50%) rotate(180deg);

	transition: all .3s ease-out;
}
.wp-block-button .wp-element-button:hover::after {
	background-color: var(--white);
	right: 4px;
}

/* BOUTON BLANC */
.wp-block-button.white-btn .wp-element-button {
	border-color: var(--white);
	color: var(--white);
}
.wp-block-button.white-btn .wp-element-button:hover {
	background-color: var(--white);
	color: var(--main-color)!important;
}
.wp-block-button.white-btn .wp-element-button::after {
	background-color: var(--white);
}
.wp-block-button.white-btn .wp-element-button:hover::after {
	background-color: var(--main-color);
}


.chiffres .wp-block-column  {
	border-left: 1px solid var(--main-color);
	padding-left: 20px;
}

/****************************/
/**********SPECIFIC**********/
/****************************/
.FlexContainer {
	display: flex!important;
	flex-flow: row wrap;
}
.ContainerFlex {
	display: flex;
	flex-flow: column;
}
.center-row {
	display: flex!important;
	flex-flow: row wrap;
	align-items: center;
}
.align-center-row {
	align-items: center;
}
.align-stretch-row {
	align-items: stretch;
}
.justify-center-row {
	justify-content: center;
}
.align-end-row {
	align-items: flex-end!important;
}
.justify-end-row {
	justify-content: end;
}
.justify-between-row {
	justify-content: space-between;
}
.justify-around-row {
	justify-content: space-around;
}
/* enlève la marge interne*/
.no-padding {
	padding: 0!important;
}
/* enlève la marge externe*/
.no-margin {
	margin: 0!important;
}
/* bouton non cliquable */
.no-click {
	pointer-events: none;
	cursor: none;
}
/* ---- FOOTER ---- */

#main-footer {
	background-color: var(--main-color);
}
#main-footer .row {
	padding: 0 100px;
}
#main-footer .col {
	width: 33%;
	padding: 20px;
}
#main-footer * {
	color: var(--white);
}
#main-footer p  {
	/* text-align: center; */
	font-size: 1.4rem;
}
#main-footer p a:hover {
	border-bottom: 1px dotted var(--white);
	box-sizing: border-box;
}
#main-footer .footer-logo {
	width:100%;
	max-width: 300px;
	height: auto;
}
#main-footer .footer-image {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
#main-footer .wp-block-buttons {
	width:100%;
	max-width: 300px;
}
#main-footer .wp-block-buttons * {
	width:100%;
}
#main-footer .social {
	display: flex;
	/* justify-content: center; */
}
#main-footer .social a{
	margin-top: 10px;
margin-right: 15px;
width: 25px;
height: 25px;
}

@media (max-width: 768px) { 
	#main-footer .row {
		padding: 10px 50px;
		flex-direction: column;
	}
	#main-footer .col {
		width: 100%;
	}
}


/* ---- HEADER HOME ---- */


#main-header {
	position: relative;
	width: 100%;
	height: 800px;
}
/*MATERIAL*/
#material {
	position: absolute;
	width: 30%;
	height: 100%;
	top: 0; 
	right: 0;

	background-image: var(--TJ_material_url); /*TJ_PLUGIN*/
}
/*MATERIAL MENU*/
#material .right-menu {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 199;
}
#material .right-menu .menu {
	list-style: none;
	margin: 0;
	display: flex;
	align-items: center;
	height: 91px;

	margin-left: 40px;
}
#material .right-menu .menu li {
	margin-right: 20px;
}
#material .right-menu .menu li a {
	position: relative;
	color: var(--white);
	font-weight: 800;
	text-transform: uppercase;
	padding-left: 25px; 
	border-bottom: 1px solid #ffffff00;
}
#material .right-menu .menu li a:hover {
	border-bottom: 1px solid #ffffff;
}
#material .right-menu .menu li a:after {
	position: absolute;
	display: block;
	content: "";

	left: 0;
	top: 50%;
	transform: translate(0,-50%);
	width: 20px;
	height: 18px;

	background-color: #FFF;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat; 
}
#material .right-menu .menu li.contact a:after {
	background-color: transparent;
	background-image : url('./assets/svg/picto_contact.svg');
}
#material .right-menu .menu li.telephone a:after {
	background-color: transparent;
	background-image : url('./assets/svg/picto_telephone.svg');
}

/*MATERIAL OVERLAY*/
.material-overlay {
	position: relative;
	width:100%;
	height: 100%;
}
.material-overlay::after {
	position: absolute;
	display: block;
	content: "";

	width: 100%;
	height: 50%;

	background-color: rgba(var(--main-color-min), .9);
}

.header-slider-wrapper {
	position: relative;
	top: 50%;
	left: 50%;

	width: 80%;
	max-width: 1240px;

	height: 600px;
	
	transform: translate(-50%,-50%);
}

/*TIMELINE*/

#timeline {
	width: 100%;
	padding: 50px 0;
	margin: 100px auto;
	position: relative;
	overflow: hidden;
 }
 
 #timeline:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -1px;
	width: 2px;
	height: 100%;
	background: var(--main-color);
	z-index: 1;
	opacity: 0.15;
 }

.timeline-block {
	width: -webkit-calc(50% + 8px);
	width: -moz-calc(50% + 8px);
	width: calc(50% + 8px);
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	justify-content: space-between;
	clear: both;
 }
 
 .timeline-block-right {
	float: right;
	padding-left: 50px;
 }
 
 .timeline-block-left {
	float: left;
	direction: rtl;
	padding-right: 50px;
 }
 #timeline h3 {
	font-size: 4rem;
	font-weight: 400;
 }
 #timeline .head {
	margin: 20px;
 }
 #timeline p.number-box {
	font-size: 15rem;
	font-weight: 200;
	opacity: 0.10;
 }
 #timeline .marker {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid #F5F7FA;
	background: var(--main-color);
	margin-top: 10px;
	z-index: 9999;
	position: absolute;
	left: calc(50% - 8px);
 }
 

 
 @media screen and (max-width: 768px) {
	.container:before {
	   left: 8px;
	   width: 2px;
	}
	.timeline-block {
	   width: 100%;
	   margin-bottom: 30px;
	}
	.timeline-block-right {
	   float: none;
	}
 
	.timeline-block-left {
	   float: none;
	   direction: ltr;
	}
 }
 
  

/*TITLE*/
.header-slider-wrapper .header-title {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
}
.header-slider-wrapper .header-title h2 {
	text-align: center;
	color: var(--white);
	font-weight: 400;
	font-size: 3.5rem;
	letter-spacing: 2px;
	margin-top: 10px;

}
/*SLIDER*/
.header-slider-wrapper #header-slider {
	overflow: hidden;
}
.header-slider-wrapper #header-slider, .header-slider-wrapper #header-slider > div, .header-slider-wrapper #header-slider > div > div, .header-slider-wrapper #header-slider > div > div > div {
	height: 100%;
	width: 100%;
}
.header-slider-wrapper #header-slider .slick-arrow {
	position: absolute;
	z-index: 1;
	bottom: 20px;
	right: 20px;

	width:35px;
	height:20px;
	padding: 0; 

	font-size: 0px;
	background-color: transparent;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: rotate(180deg);
}
.header-slider-wrapper #header-slider .slick-arrow {
	background-image: url('./assets/svg/picto_arrow.svg');
}
.header-slider-wrapper #header-slider .slick-prev { 
	transform: translate(calc(-100% - 30px), 0);
}
/*SLIDER SOCIAL*/
.header-slider-wrapper .header-social .social {
	z-index: 199;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate( calc( 100% + 20px), calc( -100% - 20px));
}
.header-slider-wrapper #header-picto {
	position: absolute;
	bottom: -30px;
	left: 0;
	transform: translate(-50%, 50%);

	width: 20vw;
	height: 20vw;
	max-width:400px;
	max-height: 400px;
	background-image: var(--TJ_picto_header_url);
	background-size: contain;
}
/*********SMARTPHONE*********/
@media (max-width: 768px) { 
	#main-header {
		height: 550px;
	}
	#material {
		width: 40%;
	}
	.material-overlay::after {
		height: 60%;
	}
	.header-slider-wrapper {
		height: 350px;
	}
	.header-slider-wrapper .header-title h1 {
		font-size: 3rem;
		line-height: 3rem;
	}
	.header-slider-wrapper .header-title h2 {
		font-size: 2rem;
	}
	.header-slider-wrapper .header-social .social {
		right: 0;
		top: 0;
		display: flex;
		transform: translate( -20px, 20px);
	}
	.header-slider-wrapper .header-social a{
		margin-top: 0;
		margin-left: 15px;
	}
}

/* ---- HOME FIXED ----- */
.fixed-header {
	z-index: 199;
	position: fixed;
	right:0;
	top:635px;
	width: 100px;
	height: 100px;

	background-color: rgba(var(--main-color-min), .9);
}
.fixed-header a {
	width: 100%;
	height: 100%;

	padding: 10px;
	box-sizing: border-box;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.fixed-header img {
	width: 25px; 
	height: 25px;
}
.fixed-header span {
	color: var(--white);
	font-weight: 800;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.5rem;
	letter-spacing: 1px;
	text-transform: uppercase; 
	margin-top: 7px;
}
/* ------ CHILD ------ */
.sommaire .child {
    position: relative;
    margin: 1%;

    width: 31%;
    height: 200px;
}
.sommaire .child > div {
    width: 100%;
    height: 100%;
}
.sommaire .child *, .sommaire .child {
    transition: all .3s ease-out;
}
.sommaire .child .child_overlay {
    position: absolute;
    background-color: var(--main-color);
    opacity: .5;
    /* mix-blend-mode: multiply; */
    width: 100%;
    height: 100%;
}
.sommaire .child:hover .child_overlay {
    opacity: .7;
}
.sommaire .child span {
    z-index: 2;
    padding: 10px 20px;
}
.sommaire .child h2 {
    color: var(--white);
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
}
.sommaire .child:hover h2 {
    transform: scale(.9);
}

/* ------ ACCORDEON ----- */
 .eb-accordion-title-wrapper {
    background-color: var(--white)!important;
	border: 1px solid var(--ast-global-color-0)!important;
	border-radius: 4px;
	color:var(--ast-global-color-0)!important;
}
.eb-accordion-container .eb-accordion-icon {
    color: var(--ast-global-color-0)!important;
}
 .eb-accordion-title-wrapper h3 {
	color:var(--ast-global-color-0)!important;
}


/* ------ SOCIAL ----- */
.social a{
	display: block;
	margin-top: 15px;
	width: 20px;
}

/* ------ DEVIS ----- */
.demande-devis {
	max-width: 200px;
	width: 100%;
	padding: 30px 20px;
	border: solid 5px rgba(var(--sub-color-min), 1);
}
.entry-content .demande-devis a {
	text-decoration: none;
}
.demande-devis img {
	width: 40px;
	height: auto;
	color: var(--grey);
}
.demande-devis span {
	margin-top: 10px;
	text-transform: uppercase;
	color: var(--main-color);
	font-size: 1.4rem;
}

@media (max-width: 768px) { 
	.demande-devis {
		margin: auto!important;
	}

}
/****************************/
/*********SMARTPHONE*********/
/****************************/
@media (max-width: 768px) { 
    .sommaire .child {
        width: 48%;
    }
}
@media (max-width: 480px) {
	.sommaire .child {
        width: 98%;
        height: 150px;
    }
    .sommaire .child h2 {
        font-size: 2rem;
    }
}

/* sections en fullwidth */
.fullwidth {
	width: 100%!important;
	max-width: 100%!important;
}
/* Centre le background et remplit la div */
.full-background-fit {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/* cache le after et le before */
.no-after:after {
	visibility: hidden!important;
}
.no-before:before {
	visibility: hidden!important;
}
.no-desktop {
	display: none!important;
}
@media (max-width: 980px) {
	.no-desktop {
		display: unset!important;
	}
	.no-tablet {
		display: none!important;
	}
}
@media (max-width: 768px) {
	.no-tablet {
		display: unset!important;
	}
	.no-mobile {
		display: none!important;
	}
}
.min-width {
	width: 60%!important;
	margin: auto;
}

.text_image {
	height: 2.5rem;
	padding: 0 10px;
}
.img-zoom, .img-zoom * {
	overflow: hidden;
}
.img-zoom img {
	transition: all .5s ease-out;
}
.img-zoom:hover img {
	transform: scale(1.1);
}

/****************************/
/********** HEADER **********/
/****************************/
#masthead .ast-primary-header {
	border: none;
}


/*****************************/
/********** PRODUITS *********/
/*****************************/
#produits #produits-grille {
	display: flex;
	flex-wrap: wrap;
}
#produits .produits-info {
	background-color: var(--white);
	padding: 20px 20px;
	margin: 100px 40px;
	min-height: 350px;
	display: flex;
    align-items: center;
	justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
	transition:         all .3s ease-in-out;
}
#produits .produits-info:hover {
	background-color: var(--main-color);
	cursor: pointer;

}
#produits .produits-info:hover p.description, #produits .produits-info:hover h3, #produits .produits-info:hover a{
	display: block;
	color: var(--white);
}

#produits .produits-info p.description, #produits .produits-info a {
	display: none;
}
#produits .produits-info p.description {
	font-size: 1.3rem;
	line-height: 2rem;
}
#produits .produits-info h3 {
	text-transform: uppercase;
	text-align: center;
	font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 2px;
	margin: 0;
	padding:0;
	margin-bottom: 15px;
}
#produits .produits-article {
	border : 4px solid var(--white);
	/* flex: 1; */
	width: 50%;
}

.wp-block-image img {
    border-radius: 8px;
}
.telephone { 
	display: none;
}


/****************************/
/********** MENU *********/
/****************************/
.main-header-menu ul.sub-menu .menu-item {
    border-bottom: 1px var(--sub-color) solid;
	background-color: var(--main-color);
	color: var(--white);
}
.main-header-menu ul.sub-menu .menu-item a.menu-link {
	color: var(--white);
}
#masthead .main-header-menu li a {
	position: relative;
	text-transform: uppercase;
	font-weight: 400;
	cursor: pointer;
}
#masthead .main-header-menu li.current-menu-item a {
	font-weight: 800;
}
.main-header-menu ul.sub-menu .menu-item li.current-menu-item a {
	color: var(--white);
	font-weight: 800;
}
#masthead .main-header-menu li a:after {
	position: absolute;
	display: block;
	content: "";
	
	bottom: -10px;
	left: 50%;
	transform: translate(-50%, 0);
	width: 65px;
    height: 7px;

	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image : url('./assets/svg/menu_shadow.svg');
	opacity: 0;

	transition: opacity .2s ease-out;
}
#masthead .main-header-menu li:hover a:after {
	opacity: .7;
}

#main-header {
	position: relative;
	width: 100%;
	height: 800px;
}
/*MATERIAL*/
#material {
	position: absolute;
	width: 30%;
	height: 100%;
	top: 0; 
	right: 0;

	background-image: var(--TJ_material_url); /*TJ_PLUGIN*/
}
/*MATERIAL MENU*/
#material .right-menu {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 199;
}
#material .right-menu .menu {
	list-style: none;
	margin: 0;
	display: flex;
	align-items: center;
	height: 91px;

	margin-left: 40px;
}
#material .right-menu .menu li {
	margin-right: 20px;
}
#material .right-menu .menu li a {
	position: relative;
	color: var(--white);
	font-weight: 800;
	text-transform: uppercase;
	padding-left: 25px; 
	border-bottom: 1px solid #ffffff00;
}
#material .right-menu .menu li a:hover {
	border-bottom: 1px solid #ffffff;
}
#material .right-menu .menu li a:after {
	position: absolute;
	display: block;
	content: "";

	left: 0;
	top: 50%;
	transform: translate(0,-50%);
	width: 20px;
	height: 18px;

	background-color: #FFF;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat; 
}
#material .right-menu .menu li.contact a:after {
	background-color: transparent;
	background-image : url('assets/svg/picto_contact.svg');
}
#material .right-menu .menu li.telephone a:after {
	background-color: transparent;
	background-image : url('assets/svg/picto_telephone.svg');
}
#material .right-menu .menu li.actualites a:after {
	background-color: transparent;
	background-image : url('assets/svg/picto_actualites.svg');
}
/*MATERIAL OVERLAY*/
.material-overlay {
	position: relative;
	width:100%;
	height: 100%;
}
.material-overlay::after {
	position: absolute;
	display: block;
	content: "";

	width: 100%;
	height: 50%;

	background-color: rgba(var(--main-color-min), .9);
}

.header-image-wrapper {
	position: relative;
	top: 50%;
	left: 50%;

	width: 80%;
	max-width: 1240px;

	height: 600px;
	
	transform: translate(-50%,-50%);
}
.header-image-wrapper .header-image {
	width: 100%;
	height: 100%;
}
/*TITLE*/
.header-image-wrapper .header-title {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);

	width: 80%;
	pointer-events: none;
}
.header-image-wrapper .header-title h2 {
	text-align: center;
	color: var(--white);
	font-weight: 400;
	font-size: 3.5rem;
	letter-spacing: 2px;
	margin-top: 10px;

}
/*SLIDER SOCIAL*/
.header-image-wrapper .header-social .social {
	z-index: 199;
	position: absolute;
	right: 0;
	top: 50%;

	transform: translate( calc( 100% + 20px), calc( -100% - 20px));
}
.header-image-wrapper #header-picto {
	position: absolute;
	bottom: -30px;
	left: -100px;
	transform: translate(-50%, 50%);

	width: 40vw;
	height: 40vw;
	max-width:400px;
	max-height: 400px;
	background-image: var(--TJ_picto_header_url);
	background-size: contain;
}



/*********SMARTPHONE*********/
@media (max-width: 768px) { 
	#main-header {
		height: 550px;
	}
	#material {
		width: 40%;
	}
	.material-overlay::after {
		height: 60%;
	}
	.header-image-wrapper {
		height: 350px;
	}
	.header-image-wrapper .header-title h1 {
		font-size: 3rem;
		line-height: 3rem;
	}
	.header-image-wrapper .header-title h2 {
		font-size: 2rem;
	}
	.header-image-wrapper .header-social .social {
		right: 0;
		top: 0;
		display: flex;
		transform: translate( -20px, 20px);
	}
	.header-image-wrapper .header-social a{
		margin-top: 0;
		margin-left: 15px;
	}
}
/********** ACTUALITES *********/
#actualites {
	display: flex;
flex-wrap: nowrap;
justify-content: flex-start;
flex-direction: row;
}
#actualites .actu {
	width: 25%;
	margin: 20px;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 5px;

}
#actualites .actu_img {	
	width: 100%;
    height: 150px;
    overflow: hidden;
}
#actualites h3 {	
	font-size: 1.8rem;
	line-height: 1.2;
}

/****************************/
/********** CONTENT *********/
/****************************/
.slide_up {
	transform: translateY(50%); /*ANIMATION GSAP*/
	opacity: 0; /*ANIMATION GSAP*/
}
.slide_down {
	transform: translateY(-50%); /*ANIMATION GSAP*/
	opacity: 0; /*ANIMATION GSAP*/
}
.slide_right {
	transform: translateX(-50%); /*ANIMATION GSAP*/
	opacity: 0; /*ANIMATION GSAP*/
}
.slide_left {
	transform: translateX(50%); /*ANIMATION GSAP*/
	opacity: 0; /*ANIMATION GSAP*/
}
body #content {
	margin-top: -100px;
}
#ast-scroll-top {
	width: 30px;
	height: 30px;
	background-color: rgba(var(--main-color-min), .9);
	border: 1px solid var(--white);
}




/****************************/
/***********FOOTER***********/
/****************************/
footer#colophon .site-below-footer-wrap {
	min-height: 60px;
}
footer#colophon #astra-footer-menu li a {
	font-size: 1.4rem
}


/****************************/
/********DESKTOP ONLY********/
/****************************/
@media (min-width: 981px) {
	
	
}
/****************************/
/**********TABLETTE**********/
/****************************/
@media (max-width: 980px) {
	
	.ast-builder-menu-mobile .main-navigation .menu-item:hover > .menu-link, .ast-builder-menu-mobile .main-navigation .inline-on-mobile .menu-item:hover > .ast-menu-toggle {
		color: var(--black);
		background: var(--white);
	}
	#masthead .main-header-menu li a:after {
		display: none;
	}
	.main-header-menu ul.sub-menu .menu-item a {
		color: var(--white);
	}
	#masthead .main-header-menu li.current-menu-item .sub-menu a {
		color: var(--white);
	}
	.ast-builder-menu-mobile .main-navigation .menu-item:hover > .menu-link, .ast-builder-menu-mobile .main-navigation .inline-on-mobile .menu-item:hover > .ast-menu-toggle {
		color: var(--white);
		background: transparent;
	}
	
	
}
/****************************/
/*********SMARTPHONE*********/
/****************************/
@media (max-width: 768px) { 
	body #content {
		margin-top: 0;
	}
	.wp-block-image {
		text-align: center;
	}
	.has-text-align-right {
		text-align: center;
	}
	.entry-content h2::before {
		display: none;
	}
	#masthead .main-header-menu .sub-menu li.current-menu-item a {
		color: var(--white);
	}
	#produits .produits-article {
		width: 100%;
	}
	#produits {
		padding: 0;
	}
	#produits-grille {
		flex-direction: column;
	}
	#produits .produits-info {
		background-color: var(--white);
		padding: 10px 10px;
		margin: 50px 20px;
		min-height: 350px;
	}
	#devis h2 {
		text-align: center;
	}

}
@media (max-width: 480px) {
	.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle {
		top: 30%;
	}
	.main-header-menu .sub-menu li.current-menu-item a {
		color: var(--white);
	}
	#masthead .main-header-menu .sub-menu li.current-menu-item a {
		color: var(--white);
	}
	

}
/****************/
/** KEYFRAMES ***/
/****************/