


/*-------------------------------
effect 1
-------------------------------*/

.effect1-item {
  position: relative !important;
  overflow: hidden !important;
}

.effect1-item img {
  transition: .5s;
}

.effect1-item:hover img {
  transform: scale(1.3);
}

.effect1-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: .5s;
  z-index: 1;
  color: #fff !important;
  text-decoration: none !important;
}

.effect1-item:hover .effect1-overlay {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-width:20px;
}

/*-------------------------------
effect 1
-------------------------------*/