﻿.Entreprise {
	display: flex;
	padding: 1rem 0;
}

.Entreprise > aside {
	flex: 2;
	/* background: gainsboro; */
	margin-left: 1rem;
}
.Entreprise > section {
	flex: 4;
}
.Entreprise > aside img {
	max-width: 100%;
}
.Entreprise h1 {
	margin: 1rem;
	font-size: 3rem;
}
.Entreprise h1 span {
	color: var(--color-1);
	text-transform: uppercase;
}
.Entreprise aside h2 {
	color: var(--color-1);
	text-transform: uppercase;
	text-align: center;
	position: relative;
}
.Entreprise aside h2::before {
	position: absolute;
	left: -20px;
	top: 50%;
	width: 15px;
	height: 2px;
	background: var(--color-1);
}
.Entreprise aside h2::after {
	position: absolute;
	right: -20px;
	top: 50%;
	width: 15px;
	height: 2px;
	background: var(--color-1);
}
.Entreprise .coordonees_boutique {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 1rem;
}
.Entreprise .coordonees_boutique iframe {
	border: none;
	height: 200px;
	margin-right: 1rem;
}
.Entreprise .coordonees_boutique > div {
	font-weight: 600;
	display: flex;
	margin-bottom: 1rem;
	/* align-items: center; */
}
.Entreprise .coordonees_boutique h3 {
	margin-top: 0;
	margin-bottom: 8px;
	color: var(--color-1);
}
.coordonees {
	flex: 1;
}
.horairesAndPlus {
	flex: 2;
}
.listingShop {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1em;
	grid-auto-rows: 260px;
}
.listingShop > a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
.listingShop > a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.listingShop > a div {
	position: absolute;
	/* top: 50%; */
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	padding: 8px;
	color: white;
}
.listingShop > a i {
	color: var(--color-1);
	text-align: center;
	margin: 8px 0;
	font-size: 1.5em;
}

.listingShop .title_tile {
	text-transform: uppercase;
	font-weight: 700;
}
.listingShop .title_tile span {
	color: var(--color-1);
	font-weight: 700;
	font-size: 1.1rem;
}
.listingShop .readmore {
	display: flex;
	align-items: center;
}
.listingShop .readmore i {
	margin: 8px;
}

.txts_boutique h3 {
	text-transform: uppercase;
}
.txts_boutique span,
.txts_boutique b {
	color: var(--color-1);
}
.allMag {
	margin-left: 1rem;
}
@media all and (max-width: 1300px) {
	.Entreprise {
		flex-direction: column;
	}
	.Entreprise > aside {
		flex: unset;
		width: 100%;
		margin-left: 0;
	}
	.allMag {
		margin-left: 0;
	}
	.Entreprise aside a,
	.Entreprise aside img {
		width: 100%;
	}
	.Entreprise aside img {
		object-fit: cover;
	}
}

@media all and (max-width: 768px) {
	.Entreprise h1 {
		font-size: 2rem;
	}
	.Entreprise .coordonees_boutique > div {
		flex-direction: column;
	}
}
