.gallery {
    margin-bottom: 200px;
}

.gallery-title {
    display: flex;
    justify-content: center;
    padding: 252px 16px 32px 16px;
    align-items: center;
}

.gallery-title-text {
    display: inline-block;
    text-align: center;
    color: var(--red);
    max-width: 230px;
    margin: 0 5vw;
}

.gallery-title-shapes {
    width: 64px;
    display: flex;
    justify-content: space-between;
}

.gallery .main-carousel {
    width: 100%;
}

.gallery .carousel-cell {
    width: 300px;
    height: 300px;
    counter-increment: carousel-cell;
    display: flex;
    justify-content: center;
    margin: 8px;
}

.gallery .carousel-cell img {
    width: 100%;
}

.gallery button.flickity-button {
    opacity: 0;
    right:0;
    height: 100%;
    width: 10vw;
}

.gallery .flickity-button.flickity-prev-next-button.next {
    right: 0;
    opacity: 0;
}

.gallery .flickity-button.flickity-prev-next-button.previous {
    left: 0;
    opacity: 0;
}

.gallery .flickity-page-dots {
    display: none;
}

@media screen and (min-width: 700px) {
    .gallery-title-text {
        max-width: 530px;
    }
}