#gallery-area {
    width: 100%;
    height: fit-content;
    margin-top: 15px;
}

#gallery {
    width: 100%;
    height: fit-content;
}

#gallery .blur {
    position: absolute;
    width: auto;
    height: auto;
    inset: 0;
    z-index: 0;
    background-color: #ffffff57;
    filter: blur(50px);
    -webkit-filter: blur(50px);
}

#gallery .scroll {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-x: auto;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}
#gallery .scroll::-webkit-scrollbar {
    display: none;
}

#gallery .slider-dots {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#gallery .slider-dots .dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff3a;
    border-radius: 1000px;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    -ms-border-radius: 1000px;
    -o-border-radius: 1000px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}
#gallery .slider-dots .dot.active {
    background-color: #ffffffd3;
    transform: scale(1.4);
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
}

#gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    scroll-snap-align: start;
    scroll-snap-stop: always;

}

@media (min-width: 500px) {
  #gallery .scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
  }
  #gallery .slider-dots {
    display: none;
  }
}
