/* Section: Prix */
.prixcontainer {
    flex: 1;
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas: "ImageGauche container";
}

@media (max-width: 768px) {
    .prixcontainer {
        height: unset;
        grid-template-columns: 1fr;
        grid-template-rows: 20em auto;
        grid-template-areas:
            "ImageGauche"
            "container";
    }
}

.prixcontainer .ImageGauche {
    background-image: url('../../assets/remiseprix2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: block;
}