.glide {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
}

.glide--carousel {
    opacity: 1;
    visibility: visible;
}

.glide * {
    box-sizing: inherit
}

.glide__track {
    overflow: hidden
}

.glide__slides {
    position: relative;
    width: 100%;
    list-style: none;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    touch-action: pan-Y;
    overflow: hidden;
    padding: 0;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
    margin-bottom: 0;
}

.glide__slide--active {
    padding: 0px
}

.glide__slide {
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    max-width: 1500px;
}

.glide__slides--dragging {
    user-select: none
}

.glide__slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    white-space: initial;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.glide__slide .content {
    border: 6px solid transparent;
}

.glide__slide--active .content {
    border: 6px solid #efc778;
    border-radius: 3px;
    background-color: #fff;
}

.gcontrols {
    position: absolute;
    width: 100%;
    top: 38%;
    opacity: 0;
    visibility: hidden;

}

.glide__bullets {
    margin-bottom: 4px;
    margin-top: 18px;
    text-align: center;
}
.glide__slides{
 margin-top: 0;
 }
.glide__slide--active .gcontrols {
    opacity: 1;
    visibility: visible;
    top: 38%;
    transition: all 330ms ease 0ms
}

.gcontrols button {
    position: absolute;
    padding: 10px;
    border: 0;
    background: #ffd700;
    width: 45px;
    z-index: 99;
    font-size: 45px;
    line-height: 1;
    cursor: pointer;
}

.gcontrols button[data-glide-dir="<"] {
    left: -25px;
}

.gcontrols button[data-glide-dir=">"] {
    right: 10px;
}

.glide__slide--active .content a {
    opacity: 1;
    visibility: visible;
}

.glide__arrows {
    -webkit-touch-callout: none;
    user-select: none
}

.glide--rtl {
    direction: rtl
}

.glide-slider .glide__bullet {
    cursor: pointer;
    width: 10px;
    height: 10px;
    border: 0px;
    margin: 0px 5px;
    border-radius: 50%;
    padding: 0px;
    -webkit-touch-callout: none;
    user-select: none;
    position: relative;
    background: #D9D9D9;
}

.glide-slider .glide__bullet--active {
    background: #1C45D6;
    width: 12px;
    height: 12px;
}

.glide__slide:focus-visible,
.glide-slider .glide__bullet:focus {
    outline: none;
}


@media all and (min-width:1200px) {
    .glide__slide .arrow:focus {
        outline: 2px dashed #1637ab;
        outline-offset: 2px;
    }

    .glide-slider .glide__bullet:focus {
        outline: 2px dashed #1637ab;
        outline-offset: 2px;
    }

    .glide__slide .content:focus,
    .glide__slide .content:focus-visible {
        outline: 2px dashed #1637ab;
        margin-top: 2px;
        margin-bottom: 2px;
    }
}

@media all and (max-width:767px) {

    .glide {
        opacity: 1;
        visibility: visible;
        padding: 0 10px;
    }

    .glide--carousel {
        padding:0px;
    }

    .gcontrols {
        opacity: 1;
        visibility: visible;
        top: 35%;
    }

    .gcontrols .arrow {
        width: 44px;
    }

    .glide__slides {
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        margin: 0;
    }

    .glide__slide {
        margin: 0;
        padding: 0 10px;
    }

    .glide__slide .content {
        position: relative;
        padding: 0;
        border: 0;
    }

    .glide__slide a.btn {
        position: relative;
        bottom: 80px;
        left: 0;
        width: 230px;
    }


    .gcontrols button[data-glide-dir="<"] {
        left: -28px;
    }

    .gcontrols button[data-glide-dir=">"] {
        right: -28px;
    }
}