
.glide__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    margin: 0 auto;
    max-width: 1312px;
    width: 100%;
}

@media screen and (max-width: 1470px) {
    .glide__wrapper {
        max-width: 1000px;
    }
}

@media screen and (max-width: 1170px) {
    .glide__wrapper {
        max-width: 800px;
    }
}

@media screen and (max-width: 991px) {
    .glide__wrapper {
        max-width: 670px;
    }
}

@media screen and (max-width: 840px) {
    .glide__wrapper {
        max-width: 625px;
    }
}

@media screen and (max-width: 768px) {
    .glide__wrapper {
        max-width: 525px;
    }
}

@media screen and (max-width: 680px) {
    .glide__wrapper {
        max-width: 400px;
    }
}

@media screen and (max-width: 575px) {
    .glide__wrapper {
        max-width: 350px;
    }
}

@media screen and (max-width: 512px) {
    .glide__wrapper {
        align-items: center;
        display: flex;
        max-width: 250px;
    }
}

@media screen and (max-width: 414px) {
    .glide__wrapper {
        max-width: calc(100% - 96px);
    }
}

.glide__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.glide--carousel .glide__track {
    display: block;
    position: relative;
}

.glide__slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}
.glide__slide-img-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 250px;
}

@media screen and (max-width: 991px) {
    .glide__slide-img-wrapper {
        height: 200px;
        min-height: unset;
    }
}

.glide__slide-img {
    height: auto;
    margin: 0 auto;
    max-height: 250px;
}

@media screen and (max-width: 991px) {
    .glide__slide-img {
        max-height: 200px;
        max-width: 200px;
        width: auto;
    }
}

.glide__slide-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    text-align: center;
}

.glide__slide-label {
    color: #000;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-transform: none
}

.glide__arrow--container {
    display: flex;
    flex-direction: row;
}

.glide__arrow--container .glide__arrow {
    border-radius: 50px;
    background-color: #E2E2E2;
    cursor: pointer;
    width: 64px;
    height: 64px;
}

@media screen and (max-width: 512px) {
    .glide__arrow--container .glide__arrow {
        width: 54px;
        height: 54px;
    }
}

.glide__arrow--container .glide__arrow:focus,
.glide__arrow--container .glide__arrow:hover {
    background-color: #FEDA7E;
}

.glide__arrow.glide__arrow--prev {
    left: -64px;
}

@media screen and (max-width: 512px) {
    .glide__arrow.glide__arrow--prev {
        left: -54px;
    }    
}

.glide__arrow.glide__arrow--next {
    right: -64px;
}

@media screen and (max-width: 512px) {
    .glide__arrow.glide__arrow--next {
        right: -54px;
    }
}
