/********
* LIEUX *
********/

.main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: 4rem 10%;
    padding-bottom: 0;
}
/* Reponsive desktop */
@media screen and ( min-width:1280px ) {
    .main{
        margin-top: 15vh;
        position: relative;
        padding: 4rem 15%;
        margin-bottom: 5rem;
        padding-right: 55%;
    }
    .main::after{
        position: absolute;
        content: url(../images/design/elements-graphiques/plateau-gateaux-4.png);
        right: 8%;
        bottom: 0;
    }
}

/* Carte */
.carte{
    padding-top: 4rem;
}
.carte__conteneur{
    width: 100%;
    height: 50vh;
    background-color: rgb(183, 183, 183);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Lieux */
.lieux{
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.lieu{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.lieu__titre{
    color: var(--primaire);
    font-family: 'Philosopher', sans-serif;
    margin-bottom: 1rem;
}
.travelersmap-container{
	filter: grayscale(1);
}
/* Reponsive desktop */
@media screen and ( min-width:1280px ) {
    .lieu{
        display: flex;
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }
	.lieux .lieu:nth-child(even) {
    	flex-direction: row-reverse;
	}
	.lieu img{
		width: 50%;
		height: 300px;
		object-fit: cover;
	}
	.lieu__contenu{
		width: 50%;
	}
}