#s-blog {
    margin-top: 110px;
}
body {
    padding: 0px;
}

#s-video-blogs {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
}

#content-video-blogs {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}

.card-video-blog {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-decoration: none !important;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #dddddd;
}

.card-video-blog:hover {
    box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.card-video-blog:hover::before {
    background-color: #000000a9;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
}

.card-video-blog img{
    width: 100%;
}

.card-video-blog div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 5px 15px;
}
.card-video-blog h3{
    font-size: 16px;
    color: #5d5d5d;
    font-family: "Muller bold";
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-video-blog .play-icon {
    position: absolute;
    opacity: 0;
    z-index: 2;
    top: calc(50% - 30px);
    pointer-events: none;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    padding: 5px;
    background-color: #E6800C;
}

.card-video-blog .play-icon svg{
    width: 60px;
    fill: #fff;
}

.card-video-blog:hover .play-icon {
    opacity: 1;
}

#s-video-blogs-interna {
    width: 100%;
    height: calc(100vh);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 130px 0px 40px;
    background: #666666;
    background: radial-gradient(circle,rgba(102, 102, 102, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%);

}

#content-video-blogs-interna {
    width: 30%;
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
    overflow: hidden scroll;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
    margin-top: var(--ytd-shorts-top-margin-free-scroll-override, var(--ytd-shorts-top-spacing));
    scrollbar-width: none;
    position: relative;
}

.video-container {
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#global-next-button {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 15px;
    left: calc(50% - 25px);
    background-color: #E6800C;
    border: none;
    border-radius: 50%;
    padding: 3px;
    cursor: pointer;
    z-index: 9999;
    transition: background-color 0.3s ease;
    animation: pulse 2s infinite;
}

#global-next-button svg{
    width: 100%;
    fill: #fff;
}

#global-next-button:hover {
    border: none;
    animation: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 128, 12, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(230, 128, 12, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 128, 12, 0);
    }
}

#main-video-blog .bread-nav{
    margin: 0px !important;
    padding-top: 90px;
}

button:focus {
    outline: none !important;
}


@media screen and (max-width: 1024px) {
    #s-blog {
        margin-top: 145px;
    }

    section#s-blog > div > div:first-child > h1 > span:nth-child(1) {
        font-size: 40px;
        text-align: center;
    }

    section#s-blog > div > div:first-child > h1 > span:nth-child(2) {
        font-size: 16px;
        letter-spacing: 3px;
        text-align: center;
        width: 80%;
    }

    #content-video-blogs {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        padding: 20px;
    }

    #content-video-blogs-interna {
        width: 100%;
    }

    #s-video-blogs-interna {
        padding: 130px 20px 40px;
    }

    .card-video-blog:hover {
        box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
        transform: translateY(-4px);
    }

    .card-video-blog::before {
        background-color: #00000075;
        z-index: 1;
        width: 100%;
        height: 100%;
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
    }

    .card-video-blog .play-icon {
        opacity: 1;
    }
}