/* GALLERY */
.besoins-fixed-container{
	position:fixed;
	top:0;
	left:0;
	width:100vw;
	height:100vh;
	background-color:rgb(0 0 0 / 90%);
	z-index:9999;
	display:flex;
	align-items:center;
	justify-content:center;
}
.besoins-fixed-container img{
	object-fit:contain;
	object-position:center;
	width: 600px;
    max-height: 50%;
}

/* CLOSE */
.besoins-fixed-close{
	position:absolute;
	width: 35px;
	height: 35px;
	background-color: var(--color-2);
	border-radius: 50%;
	top: calc(var(--space)/2);
	right: calc(var(--space)/2);
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor:pointer;
}
.besoins-fixed-close:before,
.besoins-fixed-close:after{
	content:'';
	display:block;
	position:absolute;
	width:16px;
	height:3px;
	border-radius:100px;
	background-color:var(--color-1);
}
.besoins-fixed-close:before{
	transform:rotate(45deg);
}
.besoins-fixed-close:after{
	transform:rotate(-45deg);
}