body {
    padding-top: 60px;
  }
  @media (max-width: 979px) {
    body {
      padding-top: 0px;
    }
  }

.carousel-custom-image {
    height: 600px;
    object-fit: cover;
    /* object-position: -10% 50%; */
}

.art-custom-row {
    margin-top: 10px;
    margin-bottom: 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}
  
/* Create four equal columns that sits next to each other */
.column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
    overflow: hidden;
}

.column img {
    margin-top: 4px;
    margin-bottom: 4px;
    vertical-align: middle;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.frame {
    position: relative;
    overflow: hidden;
}

.column .frame img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.column .frame:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
    filter: brightness(70%);
}

.column .frame .text {
    position: absolute;
    bottom: 10px;
    left: 20px;
    font-size: 1.8em;
    color: white;
    visibility: hidden;
}

.column .frame .text .date-caption {
    font-size: 0.6em;
}

.column .frame:hover .text {
    visibility:visible;
}

/* 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%;
}
}
