 .video-container {
        position: relative;
        width: 100%;
        /**padding-top: 56.25%; **/
        overflow: hidden;
        background: #000; 
        cursor: pointer; 
		margin:0px 0px 0px 0px;
    }
    @media screen and (max-width: 768px) {
    .video-container {
       margin:0px;
    }
}

#autoVideoContainer {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    margin: 0px 0px 0px 0px;
}

@media screen and (max-width: 768px) {
    #autoVideoContainer {
        margin: 0px;
    }
}

#autoVideoContainer video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

    video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;;
    }
    .play-button-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.2);
        transition: all 0.3s;
        z-index: 10;
        pointer-events: none; 
    }
    
    
    video.playing  ~ .play-button-wrapper {
        opacity: 0;
    }
    
    .video-container:hover .play-button-wrapper {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(5px);
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.9);
        transition: all 0.3s;
        pointer-events: auto; 
    }
    
    .video-container:hover .play-button {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }
    
    .play-button::after {
        content: "";
        display: block;
        margin: 0 auto;
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-left: 25px solid rgba(255, 255, 255, 1);
        transform: translateX(2px);
    }
@media screen and (max-width: 540px) {
	
	 .play-button {
        width: 40px;
        height: 40px;
    }
    
    .play-button::after {
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        border-left: 13px solid rgba(255, 255, 255, 1);
    }
	
	
	
	 }