.embla__wrapper {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 0 100px 0 100px;
    box-shadow: 0 10px 10px -15px #000;
}

.embla {
    max-width: 1260px;
    position: relative;
    margin: auto;
}



.embla__viewport {
    margin: auto;
    overflow: hidden;
}

.embla__viewport.is-draggable {
    cursor: move;
    cursor: grab;
}

.embla__viewport.is-dragging {
    cursor: grabbing;
}

.embla__container {
    display: flex;
    will-change: transform;
}

.embla__slide {
    display: flex;
    flex: 0 0 auto;
    width: 33.333%;
    height: 150px;
    position: relative;
    counter-increment: embla;
}

.embla__slide__inner {
    background-color: rgb(40, 44, 52);
    position: relative;
    border-radius: 0.5rem;
    padding-bottom: 46%;
    font-size: 5rem;
}

.embla__slide img {
    display: block;
    /* width: 167px; */
    height: auto;
    margin: auto;
}

.embla__button {
    background-color: transparent;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    width: 1rem;
    height: 1rem;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.embla__button:not(:disabled) {
    cursor: pointer;
    fill: #1bcacd;
}

.embla__button:disabled {
    fill: #e9e9e9;
}

/* .embla__button__svg {
    width: 3.5rem;
    height: 3.5rem;
} */

.embla__button--prev {
    left: 70px;
}

.embla__button--next {
    right: 70px;
}

@media screen and (max-width: 800px) {
    .embla__slide {
        width: 50%;
    }
}

@media screen and (max-width: 680px) {
    .embla__wrapper {
        padding: 0 50px 0 50px;
    }

    .embla__button--prev {
        left: 25px;
    }

    .embla__button--next {
        right: 25px;
    }
}

@media screen and (max-width: 585px) {
    .embla__slide img {
        width: 125px; 
    }
    .embla__slide{
        height: 100px;
    }
}

@media screen and (max-width: 450px) {
    .embla__slide {
        height: 90px;
    }

    .embla__slide img {
        width: 100px; 
    }
}

