/*
Theme Name: Formule Essentielle Design04
Template: Divi
Description: Agence Web située à Liège active dans la création de sites internet, le webdesign et l’identité graphique.
Author: Arthis Web
Author URI: https://www.arthisweb.com
*/


/* =========================
** ===== GENERIC CODE =====
 ========================= */

/*
** CENTRER DU CONTENU VERTICALEMENT
*/
.dc-centrer-verticalement {
	display: flex;
	flex-direction: column;
	justify-content: center;
  	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	 -moz-box-orient: vertical;
	 -moz-box-direction: normal;
	  -ms-flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
}

/*
** INVERSER LE SENS DES COLONNES SUR MOBILE
*/
@media only screen and (max-width : 980px) {
	.dc_inverser_colonnes-section .dc_inverser_colonnes-ligne {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}

/*
** TRANSFORMATION FORMAT IMAGES
*/
/* Square 1:1 – 1 / 1 = 1.00 = 100%
Landscape 16:9 – 9 / 16 = 0.5625 = 56.25%
Landscape 4:3 – 3 / 4 = 0.75 = 75%
Landscape 3:2 – 2 / 3 = 0.6667 = 66.67%
Portrait 9:16 – 16 /9 = 1.7778 = 177.78%
Portrait 3:4 – 4 / 3 = 1.3334 = 133.34%
Portrait 2:3 – 3 / 2 = 1.5 = 150% */
/* Images carrées pour le module image ou la galerie */
/* Ratio de l'image carrée 1:1 */
.pa-image-1-1 .et_pb_image_wrap,
.dc_galerie-ratio_1-1 .et_pb_gallery_image{
	padding-top: 100%;
	display: block;
}
/* Images panoramiques pour le module image ou la galerie */
/* Ratio de l'image panoramique 16:9 */
.pa-image-16-9 .et_pb_image_wrap,
.dc_galerie-ratio_16-9 .et_pb_gallery_image{
	padding-top: 56.25%;
	display: block;
}
/* Images paysage pour le module image ou la galerie */
/* Ratio de l'image paysage 4:3 */
.pa-image-4-3 .et_pb_image_wrap,
.dc_galerie-ratio_4-3 .et_pb_gallery_image{
	padding-top: 75%;
	display: block;
}
/* Images paysage pour le module image ou la galerie */
/* Ratio de l'image paysage 3:2 */
.pa-image-3-2 .et_pb_image_wrap,
.dc_galerie-ratio_3-2 .et_pb_gallery_image{
	padding-top: 75%;
	display: block;
}

.pa-image-1-1 .et_pb_image_wrap img,
.dc_galerie-ratio_1-1 .et_pb_gallery_item img,
.pa-image-16-9 .et_pb_image_wrap img,
.dc_galerie-ratio_16-9 .et_pb_gallery_item img,
.pa-image-4-3 .et_pb_image_wrap img,
.dc_galerie-ratio_4-3 .et_pb_gallery_item img,
.pa-image-3-2 .et_pb_image_wrap img,
.dc_galerie-ratio_3-2 .et_pb_gallery_item img{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
}

/*
** MENU MOBILE : en pleine largeur et le hamburger devient une croix pour fermer
*/
.et_mobile_menu {
	margin-left: -30px;
	padding: 5%;
	width: calc( 100% + 60px);
}

.mobile_nav.opened .mobile_menu_bar:before {
	content: "\4d";
}

/*
** AUGMENTER LA LARGEUR CHAMP RÉSULTAT CAPTCHA
** Parfois, suivant la taille du texte, certains chiffres du résultat sont masqués
*/
.et_pb_contact_right p input {
	max-width: 50px;
}

/*
** METTRE EXPOSANTS ET INDICES À LA BONNE TAILLE
** Généralement, ils sont bien trop gros…
*/
sup, sub {
    font-size: 70%;
}