@charset "utf-8";
/* CSS Document */
        .containerx {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 100%;
			width: 90%;
            margin: 20px auto;
        }
        .video-thumb {
            cursor: pointer;
            position: relative;
			width: 100%; /* Default: each element occupies 30% of the screen width */
            margin: 10px;
        }
        .video-thumb img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
.icon-video{
	position: absolute;
	z-index: 2;
	font-size: 100px;
	text-align: center;
	color: rgba(255,5,9,0.81);
	left: 0;
	width: 100%;
	top: 30%;
}
		.video-title {
            margin-top: 10px;
            font-size: 16px;
            color: #333;
			position: absolute;
			bottom: 0;
			background-color: #ffffff;
			width: 100%;
			height: 30px;
			line-height: 30px;
			text-align: center
        }
        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .popup iframe {
            width: 80%;
            height: 80%;
            border: none;
            border-radius: 8px;
        }
        .popup.show {
            display: flex;
        }
        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #ff0000;
            color: white;
            border: none;
            padding: 10px 15px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 50%;
            z-index: 1001;
        }
        .close-btn:hover {
            background-color: #cc0000;
        }

        /* Responsive media queries */
     
		  /* Responsive media queries */
       
        @media (max-width: 500px) {
              .containerx {
           
            grid-template-columns: repeat(1, 1fr);
            
            
        }
        }
