.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 0px;
}

.column img {
  margin-top: 0px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
} 

/* image hover effekt */

.image-hover {
    position: relative;
    overflow: hidden;
}

.image-hover img {
    display: block;
    width: 100%;
    height: auto;
}

.image-hover .overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.6);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: opacity 0.3s ease;

    color: #fff;
    text-align: center;
}

.image-hover:hover .overlay {
    opacity: 1;
}

.image-hover .title {
    font-size: 24px;
    font-weight: bold;
}

.image-hover .subtitle {
    font-size: 14px;
    font-family: "Source Sans 3", sans-serif;
		font-weight: 300;
		letter-spacing: 0.025em;
    line-height: 1.4;
    margin-top: 8px;

    max-width: 70%;
    text-align: center;
}