.video-section-new {
    padding-top: var(--padding-top-desktop);
    padding-bottom: var(--padding-bottom-desktop);
    background: var(--background-color);
}

.video-section-new * {
    color: var(--text-color);
}

.only-video-items video {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 4/1.21;
}

.video_toggle_btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    cursor: pointer;
}

.new-video-pause-btn {
    position: relative;
}

.video_toggle_btn svg {
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.watch-video-btn {
    color: var(--text-color) !important;
    display: flex;
    position: absolute;
    bottom: 60px;
    width: fit-content;
    left: 0;
    right: 0;
    margin: 0.75rem auto 0 auto;
    font-size: .875rem;
    align-items: center;
    justify-content: center;
}

a.watch-video-btn::after {
    content: "";
    width: .5rem;
    height: .75rem;
    transition: transform .15s linear;
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4.97638 6.00058L0.851562 1.87577L2.03008 0.697266L7.33338 6.00058L2.03008 11.3038L0.851562 10.1253L4.97638 6.00058Z' fill='%23ffffff'/%3e%3c/svg%3e");
    background-size: 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.watch-video-btn:hover::after {
    transform: translateX(0.5rem);
}

@media(max-width: 1260px) {
    .only-video-items video {
        aspect-ratio: unset;
        height: 30rem;
    }
}

@media(max-width: 768px) {
    .video-section-new {
        padding-top: var(--padding-top-mobile);
        padding-bottom: var(--padding-bottom-mobile);
    }

    a.watch-video-btn {
        bottom: 40px;
    }
}

@media (max-width: 575.98px) {
    .video_toggle_btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}