/*

===================================================================
GLIDE SLIDER - GLIDE.CSS
===================================================================

*/

.glide {
    box-sizing: border-box;
    position: relative;
    width: 100%;
}

.glide * { box-sizing: inherit; }

.glide__track { overflow: hidden; }

.glide__slides {
    backface-visibility: hidden;
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    touch-action: pan-Y;
    transform-style: preserve-3d;
    white-space: nowrap;
    width: 100%;
    will-change: transform;
}

.glide__slides--dragging { user-select: none; }

.glide__slide {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: grab;
    flex-shrink: 0;
    height: 100%;
    user-select: none;
    white-space: normal;
    width: 100%;
}

.glide__slide > img { border-radius: 3px; }

.glide__slide a {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    user-select: none;
}

.glide__arrows {
    -webkit-touch-callout: none;
    user-select: none;
}

.glide__bullets {
    -webkit-touch-callout: none;
    user-select: none;
}

.glide--rtl { direction: rtl; }

.glide__arrow:before {
    content: "\68";
    font-family: "Icons";
    font-size: 25px;
    left: 0;
    line-height: 30px;
    position: absolute;
    text-align: center;
    top: 0;
    transition: all .5s;
    width: 30px;
}

.glide__arrow--right:before { content: "\67"; }

.glide__arrow {
    background: none;
    border: none;
    cursor: pointer;
    height: 30px;
    left: 15px;
    margin-top: -15px;
    outline: none;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 30px;
}

.glide__arrow--right {
    left: auto;
    right: 15px;
}

.glide__arrow:hover:before { margin-left: -10px; }

.glide__arrow--right:hover:before { margin-left: 10px; }

.glide__bullets {
    bottom: 20px;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%;
}

.glide__bullets > button {
    border: none;
    border-radius: 50%;
    cursor: pointer;
    height: 10px;
    margin: 0 5px;
    opacity: .8;
    outline: none;
    padding: 0;
    transition: all .5s;
    width: 10px;
}

.glide__bullets > button:hover, .glide__bullets > button.glide__bullet--active { opacity: 1; }

.controls-out {
    margin-bottom: 30px;
    z-index: 5;
}

.controls-out:not([data-options*=nav]) { margin-bottom: 0; }

.controls-out .glide__arrow { left: -40px; }

.controls-out .glide__arrow--right {
    left: auto;
    right: -40px;
}

.controls-out .glide__bullets { bottom: -30px; }

.mfp-zoom-out-cur i.scroll-top-btn {
    transition: none;
    z-index: 95;
}

.glide__slide > img { max-width: 100% !important; }

@media (max-width: 575.98px) {
    .controls-out .glide__arrow { left: -30px; }

    .controls-out .glide__arrow--right {
        left: auto;
        right: -30px;
    }
}