
  .container .gallery .image-link {
        position: relative;
  }
  .container .gallery a:hover img {
        /* transform: scale(1.05); */
        z-index: 5;
  }

  .container .gallery a .title {
        background-color: rgba(255, 255, 255, 0.8);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 15px 0;
        text-align: center;
        color: rgb(6, 6, 6);
        font-size: 25px;
        opacity: 0;
        transition: opacity 0.8s;
        /* margin-left: -2px; */

  }

  .container .gallery a:hover .title {
        opacity: 1;
  } 