/*
Theme Name: 	Divi ARM child theme
Theme URI:		https://www.elegantthemes.com/
Description: 	Theme enfant de Divi par Atelier Robin Martinez SASU
Version: 		1.3
Date:			juin 2024
License:		GNU General Public License v2 or later
License URI:	http://www.gnu.org/licenses/gpl-2.0.html
Tags:			Wordpress theme, multipurpose-use, responsive-layout, accessibility-ready
Author:			ATELIER ROBIN MARTINEZ SASU
Author URI:		https://www.atelier-robin-martinez.com
Template:		Divi
Text Domain:	Divi_ARM_child_theme
Mise à jour :	07/06/2024
*/
/* 
** ******************************
**Personnalisation commune pour les site Wordpress DIVI
** ******************************
*/

/*
** CHARGER UNE FONT PERSONNALISÉE :
*/
/*
@font-face {
	font-family: font;  
	src: url(http://www.monsite.com/wp-content/themes/your-theme/fonts/font.ttf);  
	src: url(http://www.monsite.com/wp-content/themes/your-theme/fonts/font.woff') format('woff'),
	font-weight: normal;  
}
code final par generateur en ligne https://everythingfonts.com/font-face
@font-face {
    font-family: 'type-font';
    src: url('fonts/type-font.eot');
    src: url('fonts/type-font.eot') format('embedded-opentype'),
         url('fonts/type-font.woff2') format('woff2'),
         url('fonts/type-font.woff') format('woff'),
         url('fonts/type-font.ttf') format('truetype'),
         url('fonts/type-font.svg#type-font') format('svg');
}
*/

/* 
** CENTRER DU CONTENU VERTICALEMENT 
*/
.et_centrer_verticalement {
  display: flex;
  flex-direction: column;
  justify-content: center;

/* Et les déclinaisons avec préfixes pour obtenir un résultat homogène sur les divers navigateurs  */
  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) {
	.et_inverser_colonnes_section .et_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;
	}
}

/*
** 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%;
}

/*Traduction de l'expression "Share This" de Monarch par "Partager" */
.et_social_heading {
	font-size: 0!important;
}
.et_social_heading::before {
	content: "Partager";
	font-size: 15px !important;
}

/*
** ******************************
** Personnalisation pour site www.
** ******************************
*/





