/**************** Gallery ****************/
.gallery-header {
  font-family: "Montserrat", sans-serif;
  margin: 3% 0;
  color: #001a38;
  text-align: center;
  align-items: center;
  display: inline-block;
}
.gallery {
  transform-style: preserve-3d;
  position: relative;
  column-count: 4;
  padding: 20px;
}
.image {
  display: inline-block;
  margin-bottom: 10px;
  overflow: hidden;
}
img {
  width: 100%;
  transition: all 0.3s ease 0s;
}
.image:hover img {
  transform: scale(1.1);
}
.image-text {
  position: absolute;
  padding: 5px;
  margin: 5px;
  font-size: 20px;
  background-color: #24252a;
  color: #edf0f1;
  border-radius: 5px;
  opacity: 0.25;
  z-index: 1;
  transition: all 0.3s ease 0s;
}
.image:hover .image-text{
  opacity: 0.75;
}
@media screen and (max-width: 1024px){
  .image-text{
    font-size: 16px;
  }
}
@media screen and (max-width: 768px){
  .gallery {
    column-count: 3;
  }
  .image-text{
    font-size: 14px;
  }
}
@media screen and (max-width: 425px){
  .gallery {
    column-count: 2;
  }
  .image-text{
    font-size: 11px;
  }
}
@media screen and (max-width: 375px){
  .gallery {
    column-count: 1;
  }
  .image-text{
    font-size: 13px;
  }
}