#div_presentation {
   color: #777;
   margin: 40px 0;
}

#div_soutien {
   margin: 40px 0;
   background-color: #f26f1e;
   color: #fff;
}

#div_presentation .link_image {
   width: 100%;
}

.link_image img {
   width: 100%;
   object-fit: cover;
   display: block;
}

.link_image {
   display: inline-block;
   position: relative;
   overflow: hidden;
   text-decoration: none;
}

.link_image .overlay {
   position: absolute;
   inset: 0;
   background-color: rgba(0, 0, 0, 0.6);
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   opacity: 0;
   transition: opacity 0.2s ease;
   padding: 15px;
   box-sizing: border-box;
}

.link_image:hover .overlay {
   opacity: 1;
}

@media (max-width: 1000px) {
   .link_image {
      width: 100%;
      aspect-ratio: 1 / 1;
   }
}

.txt_img_link {
   font-size: 20px;
   font-weight: 600;
   color: #ff9a00;
   text-transform: capitalize;
}