.elementor-344 .elementor-element.elementor-element-ba7550b{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-50d4d3b */.gallery {
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.image-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    position: absolute;
    width: 100%;
    animation: moveImages 3s ease-in-out forwards;
}

.image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: showLogo 3s 3s forwards; /* Start this after the images move */
}

@keyframes moveImages {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-20%, -20%); }
    50% { transform: translate(20%, -20%); }
    75% { transform: translate(-20%, 20%); }
    100% { transform: translate(20%, 20%); }
}

@keyframes showLogo {
    from { opacity: 0; }
    to { opacity: 1; }
}/* End custom CSS */