.glide__arrows,
.glide__bullets {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.glide__arrows {
    width: 425px;
    justify-content: space-between;
}

.glide__bullets {
    width: 260px;
    display: inline-flex;
    justify-content: center;
    list-style: none;
    gap: 14px;
    bottom: 13px;
}

.glide__arrow {
    width: 40px;
    height: 40px;
    background: var(--bgGreen);
    border-radius: 7px;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.glide__arrow:after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    background: var(--bgBrown);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.glide__arrow--left i:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.glide__arrow:hover:after,
.glide__arrow:active:after,
.glide__arrow:focus:after {
    opacity: 1;
    z-index: 2;
}

.glide__arrow i:before{
    z-index: 3;
}


.glide__bullet {
    background: #D9D9D9;
    width: 14px;
    height: 14px;
    padding: 0;
    border-radius: 50%;
    transition: all 300ms ease-in-out;
    cursor: pointer;
    line-height: 0;
}

/*.glide__bullet:focus {
    outline: none;
}

.glide__bullet:hover, .glide__bullet:focus {
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0.5);
}*/

.glide__bullet--active {
    background: var(--bgGreen);
}

.glide--swipeable {
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.glide--dragging {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

/*# sourceMappingURL=glide.theme.css.map */

.glide__slide-content{
    width: 100%;
    height: 100%;
    /*padding: 8px;
    box-sizing: border-box;*/
}

@media (max-width: 1400px){

    .glide__arrows{
        width: 310px;
    }

    .glide__arrow{
        width: 30px;
        height: 30px;
        border-radius: 5px;
    }

    .glide__arrow i:before{
        font-size: 14px;
    }

    .glide__bullets{
        width: 190px;
        gap: 10px;
        bottom: 10px;
    }

    .glide__bullet{
        width: 10px;
        height: 10px;
    }

}