* {box-sizing: border-box}

/* Container needed to position the overlay. Adjust the width as needed */
.container {
  position: relative;
  width: 24%;
}
.ngoprofiles .overlay{
  /*margin-left: 11%;
    margin-bottom: 3%;
    width: 78%;*/
    margin-left: 23%;
    /* margin-bottom: 3%; */
    width: 55%;
    margin-top: -20%;
}

.ngoprofilesDiv{
  display: flex;
  text-align: center;
  margin-left: 6%;
}

/* Make the image to responsive */
.image {
  display: block;
  width: 80%;
  height: auto;
}

/* The overlay effect - lays on top of the container and over the image */
.overlay {
  /*position: absolute; */
  position: relative;
  bottom: 0; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1; 
  width: 82.5%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: center;
  margin-left:0%;
  height: 65%;
}

/* When you mouse over the container, fade in the overlay title */
.container:hover .overlay {
  opacity: 1;
}
