@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f6f6f6;
}

.container {
    width: 100%;
    margin: 80px auto;
}

.container h1 {
    padding: 10px 0;
    color: #222;
    font-size: 24px;
    text-align: center;
}

.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px;
    /* s */
}

.small-img-row {
    display: flex;
    align-items: center;
    /* background: #ff0000; */
    background: #ff9900;
    padding: 10px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.small-img {
    position: relative;
    flex-shrink: 0;
}

/* .small-img .pix img {
    width: 30px;
    border-radius: 4px;
} */
.small-img img {
    width: 150px;
    border-radius: 4px;
}
.small-img img:last-child {
    width: 30px !important;
    height: 30px !important;
    border-radius: 4px;
}

.small-img-row p {
    margin-left: 20px;
    color: #FFF;
    font-weight: 600;
    /* color: #707070; */
    line-height: 22px;
    font-size: 15px;
}

.play-btn {
    width: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    .row {
        grid-template-columns: 1fr; /* Switch to one column */
    }
}

.video-player {
    width: 50%;
    height: 60%;
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    display: none;
    position: fixed;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

video:focus {
    outline: none;
}

.close-btn-2 {
    height: 30px !important;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    cursor: pointer;
}
