#kids-banner .gim-shops-item__bg video{
	object-fit: contain;
}
.gim-shops-item__bg-kids{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.gim-shops-item__bg-kids img{
    max-height: 70%;
    width: auto;
    opacity: 0; /* Начальное состояние - прозрачность */
}

/* Начальные позиции для каждой картинки */
.gim-shops-item__bg-kids img:nth-child(1) {
    transform: translate(-30px, 70px); /* Слева снизу */
}

.gim-shops-item__bg-kids img:nth-child(2) {
    transform: translate(30px, 70px); /* Справа снизу с большим смещением */
}

@media screen and (min-width: 768px) {
    .gim-shops-item__bg-kids img{
        max-height: 100%;
        width: auto;
    }
    .gim-shops-item__bg-kids{
        gap: 30px;
    }
}
@media screen and (min-width: 1200px) {

}
@media screen and (min-width: 1600px){
    
}