.gallery {
    background: #f7fbff;
}

.gallery-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.gallery-button {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    padding: 20px;
    border-radius: 10px;
    z-index: 2;
}

.gallery-track {
    display: flex;
    height: 100%;
    gap: 10px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.dots-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    display: flex;
    gap: 5px;
    z-index: 2;
}

.gallery-dot {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #D6DDE8;
    cursor: pointer;

    transition: .45s ease;
}

.gallery-dot.active {
    background: var(--blue);
    transform: scale(1.2);
}

.gallery-track img {
    flex-shrink: 0;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-button.prev {
    left: 0px;
}

.gallery-button.next {
    right: 0px;
}