@media (min-width: 768px) and (max-width: 1199px) {
  /* Styles pour tablettes portrait et paysage */

  .showcase-area {
    height: 80vh;
    background: linear-gradient(rgba(240, 240, 240, 0.144),
        rgba(255, 255, 255, 0.336)),
      url("https://img.freepik.com/photos-gratuite/personne-au-bureau-pendant-journee-travail_23-2150690165.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1rem;
    text-align: center;
  }

  .showcase-area h1 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .showcase-area p {
    font-size: 1.5rem;
    color: rgb(10, 15, 171);
    line-height: 1.5;
    text-align: center;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }

    to {
      opacity: 3;
      transform: translateY(0);
    }
  }

  .showcase-container {
    animation: fadeInUp 1.2s ease-out forwards;
  }

  .category-card{
  display: grid;
  grid-template-areas:
    "image title"
    "image text"
    "image button";
    overflow: hidden;
    border: rgb(14, 15, 15) solid 1px;
    margin: 2em 0.5em;
    padding: 1em 2;
    border-radius: 8px;
    
}

.category-card img{
  width: 300px;
  height: 200px;
  grid-area: image;
}
.category-card h3{
  grid-area: title;
  margin: 0.5em 0.5em 0 0.5em;
  font-size: 1.2rem;
  text-align: center;
}
.category-card p {
  grid-area: text;
  font-size: 1.2rem;
  margin: 0.5em 0.5em 0 0.5em;
}
.category-card .btn {
  grid-area: button;
  margin: 1em 2em auto auto;
  
}
.category-logo {
    width: 200px;
    height: 100px;
    margin-bottom: 14px;
  }
  .category-logo:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }

}
