/*
Theme Name: DiviPix
Description: Theme enfant de Pixfolio
Author: Sébastien Dion - PIXFOLIO
Author URL: https://www.sebastien-creations.com
Template: Divi 
Version: 0.1.0
*/

/*GALLERY*/
/*position the gallery items*/
.pa-gallery-text-over-image .et_pb_gallery_item {
	position: relative;
}
/*remove the default top margin from the title*/
.pa-gallery-text-over-image .et_pb_gallery_title {
	margin: 0 !important;
}
/*set the overlay z-index*/
.pa-gallery-text-over-image .et_overlay {
	z-index: 1;
}
/*position and style the title and caption text container*/
.pa-gallery-text-over-image .pa-gallery-text {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: rgba(17, 17, 17, 0.8);
	opacity: 0;
	transition: all .5s ease-in-out;
}
/*show the title and caption on hover*/
.pa-gallery-text-over-image .et_pb_gallery_item:hover .pa-gallery-text {
	opacity: 1;
}
/*added this to make the gallery images open in lightbox*/
.pa-gallery-text-over-image .et_overlay {
	pointer-events: all !important;
}

/*TEXTE*/
/* style sur hypertexte */
p a {text-decoration:none;font-weight:bold;}
/* flèche du sous-menu qui est trop collé au lien du menu */
.et-menu .menu-item-has-children > a:first-child::after {right:-5px !important;}