.gallery {
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 1320px;
  flex-wrap: wrap;
  margin: 0px auto;
  /* gap: 14px; */
}
.gallery div {
  display: flex;
}
.gallery img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  border-radius: 12px;
  overflow: hidden;
}

.gallery img:hover {
  transform: scale(1.1);
}

.sets .hide,
.sets .pophide {
  width: 0%;
  opacity: 0;
}

/* resposive CSS Code */

@media (max-width: 767px) {  
  .gallery img {
    width: 100px;
	height: 100px;
  }
}

@media (max-width: 540px) {  
  .gallery img {
    width: 90px;
	height: 90px;
  }  
}


a.ttp{
    position:relative;
    cursor: pointer;
  color: #513379;
}

a.ttp:hover{
    text-decoration:none;
  color: #513379;
}

a.ttp:after{
    content: attr(tip);
    font-family:Arial, Helvetica, sans-serif;
    font-size:100%;
    line-height:1.2em;
    color:#fff;
    min-width:200px;
  width: 100%;
  max-width:320px;
    padding:5px 10px;
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
    border-radius:6px;
    background:#513379;
    background:-webkit-linear-gradient(#513379, #513379);
    background:-moz-linear-gradient(#513379, #513379);
    background:-o-linear-gradient(#513379, #513379);
    background:-ms-linear-gradient(#513379, #513379);
    background:linear-gradient(#513379, #513379);
    -moz-box-shadow: 3px 3px 4px rgba(0,0,0, .65);
    -webkit-box-shadow: 3px 3px 4px rgba(0,0,0, .65);
    box-shadow: 3px 3px 4px rgba(0,0,0, .65);
    position:absolute;
    top:27px;
    left:-10px;
    display:none;
}

a.ttp:before{
    z-index:1000;
    position:absolute;
    content:"";
    top:15px;
    left:0px;
    border-right:7px transparent solid;
    border-left:7px transparent solid;
    display:none;
}

a.ttp:hover{
    z-index:1000;
    position:relative;
    color:#8325f7;
}

a.ttp:hover:after{
    display:block;
}

a.ttp:hover:before{
    display:block;
}