@font-face {
    font-family: 'Rajdhani';
    src: url('../ressources/fonts/Rajdhani-Bold.ttf') format("truetype");
}
@font-face {
    font-family: 'Poppins 400';
    src: url('../ressources/fonts/Poppins-Regular.ttf') format("truetype");
}
@font-face {
    font-family: 'Poppins 500';
    src: url('../ressources/fonts/Poppins-Medium.ttf') format("truetype");
}
@font-face {
    font-family: 'Poppins 600';
    src: url('../ressources/fonts/Poppins-SemiBold.ttf') format("truetype");
}
@font-face {
    font-family: 'Poppins 700';
    src: url('../ressources/fonts/Poppins-Bold.ttf') format("truetype");
}
* {
    margin: 0;
    padding: 0;
    font-family: 'Rajdhani', serif;
    color: black;
}
body {
    overflow-x: hidden;
}

/*--------------Class------------*/
.uppercase {
    text-transform: uppercase;
}
.white {
    color: white;
}
/*----------------imgStart---------------*/
.imgStart {
    background-image: url("../ressources/images/fondAccueil.webp    ");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 400px;
    display: flex;
    text-align: center;
    align-items: center;
}
.title {
    margin: 0 auto;
    font-size: 35px;
    font-family: 'Rajdhani', sans-serif;
    color: #FFFFFF;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    text-align: center;
}
span {
    display: block;
}
/*---------------Container------------------*/
.container {
    max-width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    position: relative;
}
/*-----------------leftCol--------------------*/
.leftCol {
    position: relative; /*sticky*/
    margin-left: 5%;
    top: 10%;
    height: fit-content;
    width: 30%;
    max-width: 50%;
    font-weight: 700;
}
/*------------------SearchBar---------------------------------*/
.searchBar {
    flex-direction: row;
    width: 100%;
    border: 1px solid grey;
    margin: 5% auto;
    border-radius: 25px;
    padding: 1%;
}
.searchBar button {
    background-color: transparent;
    border: none;
    border-radius: 25px;
    width: 35px;
    height: 35px;
}
.searchBar button:hover {
    background-color: rgba(217,217,217,.5);
}
.searchIcon {
    width: 15px;
}
.inputSearch {
    border: none;
    width: 70%;
    margin-left: 5%;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
}
.inputSearch:focus {
    outline: none;
}

/*-----------------------------------------------------------------------------------------------------*/
.filtres {
    margin-top: 25%;
    margin-bottom: 15%;
}
.filtres, .choixFiltre {
    display: flex;
    flex-direction: column;
}
.filtresTitle {
    font-family: "Poppins 600" ,sans-serif;
    font-size: 12px;
    color: #303133;
    text-transform: uppercase;
}
.separator {
    height: 1px;
    width: 90%;
    background-color: #777777;
}
.choixFiltre {
    display: flex;
    flex-direction: column;
}
.choixFiltre div {
    display: flex;
    flex-direction: row;
    margin: 3%;
}
.choixFiltre div .lienFiltre {
    display: flex;
    flex-direction: row;
    width: 80%;
    z-index: 100;
}
.choixFiltre div .lienFiltre h3 {
    margin-left: 10%;
    font-family: "Poppins 400", sans-serif;
    font-size: 14px;
    color: #777777;
}
.choixFiltre div .lienFiltre {
    text-decoration: none;
}
.choixFiltre div .lienFiltre .cB {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border-color: #eaeaea;
    transform: scale(1.5);
}
.choixFiltre div .lienFiltre .cB, .choixFiltre div .lienFiltre h3 {
    cursor: pointer;
}
.choixFiltre div .lienFiltre:hover {
    text-decoration: none;
}
#btReset {
    margin-top: 5%;
    font-family: "Poppins 500", sans-serif;
    font-size: 14px;
    border: 2px solid #fc4c01;
    background: transparent;
    color: #fc4c01;
    border-radius: 25px;
    padding: 5px 15px;
    width: fit-content;
    visibility: hidden;
    margin-bottom: 5%;
}

/*-----------------rightCol--------------------*/
.rightCol {
    width: 100%;
    font-weight: 700;
}
/*-------------nbProduits----------------------*/
.nbProduits {
    width: 100%;
    margin-left: 5%;
}
.nbProduits label, #nb {
    font-family: "Poppins 400", sans-serif;
    font-size: 15px;
    color: #777777;
}
.nbProduits {
    display: flex;
    flex-direction: row;
}
.nbProduits label {
    display: flex;
    margin-right: 10px;
}
#nb {
    display: flex;
}

/*--------------Ensemble image-----------------*/
#allImage {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-evenly;
    width: 90%;
}
/*-------------------------------------------*/


/*---------------Image----------------*/
/*.produit {
    width: 33%;
    margin-top: 5%;
    margin-bottom: 5%;
    position: relative;
}
.produitLarge {
    width: 67%;
    margin-top: 5%;
    margin-bottom: 5%;
    position: relative;
}
.imgImg {
    display: inline-block;
    text-align: center;
    position: relative;
    width: 90%;
    height: fit-content;
}
.imgImg:hover {
    text-decoration: none;
}
.imgImg .imgBorne {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
    background-size: cover;
    background-position: center center;
}*/
.imgImg .textHover {
    position: absolute;
    width: 100%;
    z-index: 10;
    opacity: 0;
    background-color: #fa4c03;
    text-decoration: none;
    color: white;
    padding: 4% 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
}
.imgImg:hover .textHover {
    opacity: 1;
    transition: all .5s ease-in-out;
}
.spanBorne {
    font-size: 20px;
}
.imgImg {
    display: inline-block;
    text-align: center;
    position: relative;
    width: 90%;
    height: 90%;
}
/*---------------ImageTemp----------------*/
.produit, .produitResize, .produitResize2, .produitResize3 {
    width: 33%;
    height: 600px;
}
.produitLarge {
    width: 66.3%;
    height: 600px;
}
.produit .imgBorne, .produitLarge .imgBorne  {
    /*width: 70%;*/
    height: 100%;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.produitResize .imgBorne {
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

/*
.produitResize .imgBorne {
    height: 100%;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.produitResize2 .imgBorne {
    width: 65%;
    height: 100%;
    margin: 0 auto;
    background-size: cover;
    background-position: center center;
}
.produitResize3 .imgBorne {
    width: 110%;
    height: 90%;
    margin: 0 auto;
    background-size: cover;
    background-position: center center;
}
*/
/*
.imgImg .textHover {
    position: absolute;
    width: 100%;
    z-index: 10;
    opacity: 0;
    background-color: #fa4c03;
    text-decoration: none;
    color: white;
    padding: 4% 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
}
.imgImg:hover .textHover {
    opacity: 1;
    transition: all .5s ease-in-out;
}
.spanBorne {
    font-size: 20px;
}/*
/*------------------------------------*/

/*---------------Path----------------*/
.path {
    margin: 2% 0 2% 10%;
}
.path, .path a {
    color: grey;
    font-family: 'Poppins 500', sans-serif;
    font-size: 14px;
    text-decoration: none;
}
.path a:hover {
    color: #fa4c03;
}

@media only screen and (max-width: 1024px) {
    .path {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
  .container {
    flex-direction: column;
  }
  .leftCol {
    width: 90%;
    position: relative;
    max-width: 90%;
  }
  .nbPrdouits {
    display: none
  }
  .rightCol {
    width: 90%;
    margin: auto;
  }
  
}