section.videos__gallery {
    margin-top: 70px;
    margin-bottom: 100px;
}

section.videos__gallery .container {
    padding: 50px 70px;
    padding-bottom: 70px;
    border-radius: 30px;
}

section.videos__gallery .videos__gallery-thumb {
    position: relative;
}

section.videos__gallery .videos__gallery-thumb::before {
    content: '';
    width: 50px;
    height: 50px;
    background: var(--dark-blue-100);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 2;
}

section.videos__gallery .videos__gallery-thumb:after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(50% + 2px);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #fff;
    z-index: 3;
    cursor: pointer;
}

section.videos__gallery .videos__gallery-item iframe,
section.videos__gallery .videos__gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    object-fit: cover;
}

section.videos__gallery .videos__gallery-item img {
    cursor: pointer;
    z-index: 1;
}

section.videos__gallery .splide__pagination {
    bottom: -40px !important;
}

section.videos__gallery .splide__pagination .splide__pagination__page.is-active {
    background: var(--dark-blue-100) !important;
}

section.videos__gallery .splide__arrow--prev {
    left: -45px !important;
}

section.videos__gallery .splide__arrow--next {
    right: -45px !important;
}

section.videos__gallery .splide__arrow:disabled {
    display: none !important;
}