﻿.glide {
    position: relative;
}

.glide-img {
    height: 250px;
    cursor: pointer;
}

.glide-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-arrows {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    top: 100px;
}

.carousel-arrows button {
    border: none;
    color: #6f99a7;
    background: transparent;
    font-size: 20pt;
}

@media screen and (max-width: 992px) {
    .carousel-arrows {
        justify-content: space-between;
    }
}