iframe{
    border: none;
}
.gallery {
    overflow: hidden;
    position: relative;
}
.gallery .main-gallery {
    white-space: nowrap;
    font-size: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    width: 100%;
}
.gallery .main-gallery .gallery-cell {
    all: initial;
    display: flex;
    margin: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    white-space: normal;
    flex: 0 0 100%;
    box-sizing: border-box;
}
.gallery .gallery-bullets {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translatex(-50%);
}
.gallery .gallery-bullets .gallery-bullet {
    border-color: solid 0 transparent !important;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    background: white;
    padding: 0;
    cursor: pointer;
}
.gallery .gallery-bullets .gallery-bullet.active {
    background: #FF8300;
}
