.gallery {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 20px 0;
    background: black;
}

.gallery-pictures {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background: transparent;
    cursor: -webkit-grab;
    -webkit-transform: rotateY(0);
    white-space: nowrap;
    font-size: 0;
}

.gallery-picture {
    width: 700px;
    margin-right: 120px;
    display: inline-block;
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.gallery-text {
    font-size: 25px;
    position: absolute;
    margin: 0;
    padding: 0;
    font-family: Play;
    color: black;
    white-space: normal;
    text-align: center;
    bottom: 5px;
    left: 0;
    word-break: normal;
z-index: 2;
}

.gallery-transperent {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.gallery-pagination {
    margin-top: 30px;
    text-align: center;
    font-size: 0;
}

.gallery-pagination-dot {
    background: #333;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    border: none;
    margin: 0 7px;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.gallery-pagination-dot-selected {
    background: #7D87AE;
}