@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background-color: #f5f8ff;
}

.Acheter {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    margin-top: 160px;
}

.Acheter h1 {
    color: #dfb246;
}

.Acheter h3 {
    color: #0d0d0d;
}

.BarreRecherche {
    width: auto;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    box-shadow: 5px 15px 20px rgba(13, 13, 13, .6);
}


.BarreRecherche span {
    position: relative;
    border: 2px solid #fff;
    background-color: #fff;
    font-size: 1.1em;
    z-index: 10000;
    padding: 8px;
    font-weight: 300;
    white-space: nowrap;
}

.BarreRecherche select {
    cursor: pointer;
    background-color: #fff;
    font-size: 1.1em;
    padding: 8px;
    border: 2px solid #fff;
    font-weight: 300;
}

.BarreRecherche select option {
    appearance: none;
    background-color: #fff;
    color: #333;
}

.BarreRecherche input {
    cursor: pointer;
    background-color: #fff;
    font-size: 1.1em;
    padding: 8px;
    border: 2px solid #fff;
    font-weight: 300;
}

.BarreRecherche input[type="submit"] {
    background-color: #dfb246;
    border: 2px solid #dfb246;
    color: #fff;
}

.BarreRecherche input[type="submit"]:active {}

/*Fin CSS Barre de Recherche*/

/*CSS pour le wrapper*/
/*.wrapper {
    max-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}*/

/*FondCarousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}*/

.carousel {
    position: relative;
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    align-content: space-evenly;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 100px;
    margin-bottom: 20px;
}

.list_card {
    position: relative;
    width: 30%;
    margin-top: 30px;
    /*outline: solid 5px #dfb246;*/
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 10px 10px 20px rgba(13, 13, 13, .6);
}

@media screen and (max-width: 1200px) {
    .list_card {
        width: 45%;
    }
}

@media screen and (max-width: 750px) {
    .list_card {
        width: 90%;
        margin-top: 20px;
    }
}

.card {
    position: relative;
    width: 100%;
    border-radius: 5px;
    overflow: 1;
    flex-grow: 1;
}

.card .Détails {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 5px;
    padding: 10px;
    transition: 0.3s ease;
}

.SurvolOr span {
    font-family: "RaleWay", sans-serif;
    font-weight: 700;
}

.card .Détails:hover {
    background-color: #fff;
    color: #dfb246;
    border-color: #fff;
    transition: 0.3s ease;
}

.card h3 {
    text-align: center;
    padding: 0px;
    color: #dfb246;
    margin: 10px 10px 0 10px;
}

.card_image {
    background: transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-height: 274px;
    object-fit: cover;
}

.card_image .PhotoDevanture {
    height: 100%;
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    vertical-align: bottom;
}

.SurvolOr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(223, 178, 70, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 300;
}

.SurvolOr:hover {
    opacity: 1;
    transition: 0.3s ease;
}

.ColonnesCarrousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.LignesCarrousel {
    width: 50%;
    position: relative;
    text-align: center;
}

.LignesCarrousel2 {
    display: block;
    width: 50%;
    position: relative;
    text-align: left;
}

.LignesCarrousel h5,
h4 {
    margin-top: 8px;
}

.PrixHorsHonoAcq,
.MontantHonoAcq {
    color: #0d0d0d;
}

.PrixNet {
    color: #dfb246;
    text-decoration: underline 2px;
}

.Icone_Texte {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 8px;
}

.Icone_Texte h5{
    color: #000;
}

.Icone_Texte.Surface {
    margin-bottom: 10px;
}

.LogoOr {
    width: 10%;
    height: 10%;
    margin-right: 8px;
}

.Séparation {
    position: relative;
    border-left: 2px solid #202020;
    height: 100%;
    margin: 0 10px;
}

@media screen and (max-width: 1445px) {
    .BarreRecherche {
        flex-direction: column;
    }

    .carousel {
        margin-top: 340px;
    }
    
    .Acheter {
        margin-top: 200px;
    }
}

.menu a[href="../acheter/Acheter.php"] {
    color: #dfb246;
}

header.sticky ul li a[href="../acheter/Acheter.php"] {
    color: #dfb246;
}

.footerCtnerCol a[href="../acheter/Acheter.php"] {
    color: #dfb246;
}

/*Fin du CSS pour le wrapper