* { -webkit-tap-highlight-color: transparent; }
.slide_iqd,
.slide_drc {
  min-width: 0;
  height: 100%;
}


.slide_iqd div,
.slide_drc div {
  width: 80%;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.slide_iqd div span,
.slide_drc div span {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 200;
  margin: 10px;
  background-image: url('https://cdn-shopklim.b-cdn.net/backgrounds/tiktok-icon.svg?format=webp');
  background-size: 18%;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  display: none;
}


.slide_iqd div:hover span,
.slide_drc div:hover span {
  display: block;
  animation: pulsa 1.5s ease-in-out infinite;
}

@keyframes pulsa {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}



.slide_iqd div img:hover,
.slide_drc div img:hover {
  filter: brightness(30%);
}




@media (min-width:920px) {

  
  .slide_iqd div,.slide_drc div {
    margin: 20px 0;
    /* background-color: rgb(38, 29, 124); */
    min-width: 200px;
    max-width: 300px;
    max-height: 250px;
    min-height: 100px;
    width: auto;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 

  .slide_iqd div img,.slide_drc div img {
    padding: 10px;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    background-size: cover;
    transition: transform 0.3s ease;
  }
  
  .slide_iqd div:hover img,.slide_drc div:hover img {
    transform: scale(1.05);
  }
  .container_main {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
  }

  .slide_drc,
  .slide_iqd {
    flex: 1;
    display: grid;
    text-align: center;
    place-content: center;
    grid-template-rows: 50% 50%;
    cursor: pointer;
  }

  main {
    flex: 2.5;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width:919px) {
  main{
    height: fit-content;
  }
  
  .slide_iqd div,.slide_drc div {
    margin: 20px 0;
    /* background-color: rgb(45, 43, 66); */
    padding: 10px;
    width: auto;
    height: auto;
    min-width: 120px;
    min-height: 90px;
    max-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
  }
 

  .slide_iqd div img,.slide_drc div img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    background-size: cover;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .slide_iqd div:hover img,.slide_drc div:hover img {
    transform: scale(1.05);
  }

  .slide_drc,
  .slide_iqd {
    display: grid;
    /* grid-template-columns: repeat(auto-fit,minmax(100px,1fr)); */
    /* background-color: red; */
    text-align: center;
    width: 100%;
    padding: 10px;
  }


}

