
.glide {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.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;
}
.glide__slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    white-space: normal;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}
.glide__bullets {
    -webkit-touch-callout: none;
    user-select: none;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0.75rem 0 0 0;
    list-style: none;
    gap: 0.125rem;
}
.glide__bullet {
    transition: all 0.3s ease;
    cursor: pointer;
}
.glide__bullet--active {
    background-color: #f59e0b !important;
    transform: scale(1.2);
}
/* Navigation arrows styles */
.glide__arrow {
    opacity: 0.8;
    transition: all 0.3s ease;
}
.glide__arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}
.glide__arrow:focus {
    outline: none;
}
.glide__arrow i {
    font-size: 1.25rem;
}
@media (max-width: 768px) {
    .glide__arrow {
        width: 2rem !important;
        height: 2rem !important;
    }
    .glide__arrow i {
        font-size: 1rem;
    }
}
