main .container{
  width: 90%;
  max-width: 1660px;
  min-height: calc(100vh - 650px);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 15px;
}
main .container .items{ 
  margin: 5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  flex-shrink: 0;
  box-shadow: 13px 13px 35px rgba(0, 0, 0, 0.5);
  background: rgba(232, 234, 238, 0.5);
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}
main .container .items img{
  width: 200px;
  height: 200px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 13px 13px 35px rgba(0, 0, 0, 0.5);
  margin: 25px;
  transition: transform 0.4s ease;
}
main .container .items:hover{
  /* opacity: 1; */
  transform: scale(1.1) rotateZ(-2deg);
  z-index: 2;
}
main .container .items img:hover{
  transform: scale(1.05) rotateZ(5deg);
}

/* ****************** MODAL ****************** */
.noscroll {
  overflow: hidden;
}
#popup-bg{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
  align-items: center;
  justify-content: center;
}
#popup-bg.active{
  display: flex;
}
#popup-content{
  max-width: 90%;  
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* transform: scale(3); */
}
#popup-img{
  width: 100%;
  height: auto;
  max-height: 95vh;
  border-radius: 10px;
}
#popup-close{
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #dedede;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
#popup-close:hover{
  background-color: #757575;
}

/* @media (max-width: 628px){
  #popup-content{
    transform: scale(2);    
  }
  #popup-close{
    width: 16px;
    height: 16px;
    font-size: 16px;
  }
} */
