.bloc-pdf {
    
    margin: 100px 0;
     display: flex;
      flex-direction: row;
   



.pdf {
    position: relative;
    background: rgba(235, 235, 235,);
    height: 10em;
    width: 20%;
    border: 1px solid rgb(173, 173, 173);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-image: url("../image/PDF_30915.png");
    background-position: -50px -200px;
    background-size: full;
    border-radius: 10px;
    overflow:hidden;
    background-repeat: no-repeat;
    transition: transform 0.3s;
}

.pdf a {
    list-style: none;
}

.pdf-title h2 {
    font-size: 2vmin;
    color: black;
    
    margin: auto;
}

.pdf-title {
    background: white;
     padding: 5px;
     height: 100%;;
}

.pdf:hover { /* Correction de la syntaxe */
    cursor: pointer;
    transform: scale(1.05); /* Augmentation de la taille au survol */
}

.pdf-title {
    width: 50%;
   position: absolute;
   right: 5px;
    margin:0 auto;
    top: 10px;
}

.container-offre{
    height : 100%;
    min-height:100vh;
}


@media only screen and (max-width:600px){
  .pdf {
    
    background-size: 90%;
    background-position: -50px -50px;
    
    
    
}

.pdf-title {
     background: white;
     padding: 5px;
     height: 100%;
     
}
    
  }
  
  
  

