
.hoverBox .row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.hoverBox .column {
  flex: 100%;
  max-width: 100%;
}

.hoverBox .column img {
  vertical-align: middle;
}

.hoverBox .boxing {
  position: relative;
  width: 100%;
}

.hoverBox .image {
  display: block;
  width: 100%;
  height: auto;
}
.hoverBox .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: black;
}

.hoverBox .boxing:hover .overlay {
  opacity: 0.5;
}
.hoverBox .text h2{color: #fff;}
.hoverBox .text p{font-size: 16px; color: #fff;font-weight: 600;}
.hoverBox .text {width: 90%;
  color: white;
  font-size: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

/* Tablet Styles */
@media only screen and (min-width: 480px) {
  .hoverBox .column {
      flex: 50%;
      max-width: 50%;
    }
}


/* Desktop Styles */
@media only screen and (min-width: 1024px) {
  .hoverBox .column {
      flex: 33.3%;
      max-width: 33.3%;
    }
}