 .dmg-gallery-container {
        display: grid;
       flex-direction:column;
       margin: 50px 0 50px 0;
    }

     .dmg-gallery-container-2 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin: 20px auto;
    }
.dmg-item {
  
    height: 250px;
    
}

.section-title {
        text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0px;
    color: #7F3659;
    font-weight: 700;
}
.dmg-item img,
.dmg-item video {
    width: 100%;
    max-height: 100%;
    border-radius: 8px;
    cursor: pointer;
    object-fit: cover;
}

/* Lightbox */
.dmg-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.dmg-lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.dmg-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.dmg-nav {
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: white;
    cursor: pointer;
}

.dmg-nav.prev { left: 40px; }
.dmg-nav.next { right: 40px; }

/* Responsive */
@media (max-width: 1024px) {
    .dmg-gallery-container {
        /* grid-template-columns: repeat(3, 1fr); */
    }
}

@media (max-width: 768px) {
   
    .dmg-gallery-container {
        padding: 0 20px;
            margin: 20px 0 20px 0;
    }

      .dmg-gallery-container-2 {
        margin: 0px auto;
        grid-template-columns: repeat(2, 1fr);
    }

    .dmg-item {
    height: 200px;
}
.logo a {
    height: 100%;
    display: flex;
    align-items: center;
}
}