
    .image-container {
        border-radius: 0px;
        display: block;
        width: 100%
    }

    .image-container:hover .overlay {
      opacity: 1;
    }

    .image {
      width: 100%;
      height: auto;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 62%;
      background-color: rgba(0, 0, 0, 0.5);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .overlay-text {
      position: absolute;
      top: 25%;
      left: 25%;
      transform: translate(-15%, -10%);
      color: #002147;
      font-size: 18px;
      text-align:center ;
      border-radius: 10px;
      padding: 5px 5px 5px 5px;
      background-color: #DBBDC9;


      
    }
 
