﻿.insta-feed {
  padding-bottom: 40px;
}
.insta-feed .insta-img {
  position: relative;
  height: 304px;
  margin: 10px;
}
@media (max-width: 1399px) {
  .insta-feed .insta-img {
    height: 259px;
  }
}
@media (max-width: 1199px) {
  .insta-feed .insta-img {
    height: 214px;
  }
}
@media (max-width: 991px) {
  .insta-feed .insta-img {
    height: 212px;
  }
}
@media (max-width: 767px) {
  .insta-feed .insta-img {
    height: 238px;
  }
}
@media (max-width: 575px) {
  .insta-feed .insta-img {
    height: calc(50vw - 12px - 20px);
  }
}
.insta-feed .insta-img .insta-img-span {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.insta-feed .insta-img .text {
  z-index: 3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0 10px;
}
.insta-feed .insta-img .overlay {
  opacity: 0;
  transition: 0.5s ease;
  background-color: rgba(0, 116, 179, 0.8);
}
.insta-feed .insta-img a:hover .overlay {
  opacity: 1;
}
