#videoPlaceholder:hover .play-img img {
    content: url("../images/playbtn/hover.png");
}

.video-thumbnail {
    position: relative;
    display: inline-block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.video-container {
    position: relative;
    background: #000;
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
    max-height: 80%;
}

.close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

#videoContainer {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: black;
}

#videoPlaceholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.video-container {
    position: relative;
    background: #000;
    border-radius: 10px;
    width: 80%;
    height: 80%;
}

.close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.overlay-video {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    filter: brightness(50%)
}

.overlay-video:hover {
    filter: brightness(100%)
}

.about-title {
    font-family: "Roboto Condensed", serif;
    font-weight: 200; !important; 
    font-size: 80px; !important;
}

.about-content {
    display: flex; 
    height: 100%;
}

.about-description {
    max-width: 18.7%; 
    height: 100%;
}

.about-placeholder {
    max-width: 81.3%; 
    width: 81.3%; 
    height: 100%; 
    padding: 0 0 0 0.7%; 
    z-index: 15
}

@media (max-width: 768px) {
    .about-title {
        font-weight: 200; !important;
        font-size: 40px; !important;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .about-description {
        max-width: 90%;
        height: 50%;
    }

    .about-placeholder {
        max-width: 100%;
        width: 100%;
        height: 30%;
        padding: 0 0 0 0.7%;
        z-index: 15
    }
}
