<style>.wrapper_updates_videos {
    max-width: 1100px;
    width: 100%;
    position: relative;
}

#videos-content {
    width: 80%;
    margin: auto;
    max-width: 1100px;
}


/*
    .wrapper_updates_videos i {
        
 
        height: 50px;
        width: 50px;
        cursor: pointer;
        font-size: 1.25rem;
        position: absolute;
        text-align: center;
        line-height: 50px;
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
        transform: translateY(-50%);
        transition: transform 0.1s linear;
    }

    .wrapper_updates_videos i:active {
        transform: translateY(-50%) scale(0.85);
    }

   .wrapper_updates_videos i {
         
        height: 50px;
        width: 50px;
        cursor: pointer;
        font-size: 1.25rem;
        position: absolute;
        text-align: center;
        line-height: 50px;
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
        transform: translateY(-50%);
        transition: transform 0.1s linear;
    } */

.wrapper_updates_videos i:active {
    transform: translateY(-50%) scale(0.85);
}

.wrapper_updates_videos i:first-child {
    right: 60px;
}

.wrapper_updates_videos i:last-child {
    right: -22px;
}

.view-all-gallery-videos {
    text-decoration: none;
    font-size: .8rem;
    background: var(--text-theme-grey);
    color: var(--text-color-3);
    padding: 10px 10px;
    border-radius: 4px;
    /* line-height: 38px; */
    vertical-align: text-top;
}

.updates-videos-slider-nav {
    padding-top: 40px;
    text-align: right;
}

.updates-videos-slider-nav i {
    font-style: normal;
    height: 38px;
    width: 38px;
    cursor: pointer;
    font-size: 1.25rem;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    display: inline-block;
    background: #fff;
    border-radius: 5px;
    border: 1px solid var(--text-theme-grey);
    transition: transform 0.1s linear;
}

.updates-videos-slider-nav i:first-child {}

.updates-videos-slider-nav i:last-child {
    right: 30px;
}

.wrapper_updates_videos .carousel_updates_videos {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 4) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel_updates_videos::-webkit-scrollbar {
    display: none;
}

.carousel_updates_videos.no-transition {
    scroll-behavior: auto;
}

.carousel_updates_videos.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel_updates_videos.dragging .card_updates_videos {
    cursor: grab;
    user-select: none;
}

.carousel_updates_videos :where(.card_updates_videos, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel_updates_videos .card_updates_videos {
    scroll-snap-align: start;
    /* height: 342px; */
    list-style: none;
    /* background: #fff; */
    cursor: pointer;
    padding-bottom: 15px;
    flex-direction: column;
    border-radius: 8px;
}

.carousel_updates_videos .card_updates_videos .img {
    background: #8B53FF;
    height: 148px;
    width: 148px;
    border-radius: 50%;
}

.card_updates_videos .img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}

.carousel_updates_videos .card_updates_videos h2 {
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
}

.carousel_updates_videos .card_updates_videos span {
    color: #6A6D78;
    font-size: 1.31rem;
}

@media screen and (max-width: 950px) {
    .wrapper_updates_videos .carousel_updates_videos {
        grid-auto-columns: calc((100% / 3) - 9px);
    }
}

@media screen and (max-width: 900px) {
    .wrapper_updates_videos .carousel_updates_videos {
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media screen and (max-width: 600px) {
    .wrapper_updates_videos .carousel_updates_videos {
        grid-auto-columns: 100%;
        /*   width: 300px; */
    }
}

</style>