/* video-modal.css */

.modal,
.overlay {
    display: none;
    position: fixed;
    top: 0px; /* Adjusted to the height of the header */
    left: 0;
    width: 100%;
    height: calc(100% - 0px); /* Adjusted to the height of the header */
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    z-index: 2000; /* Make sure it's above the header */
}

.modal-content {
    background-color: #f8f8f8;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
	color: #f8f8f8;
}

.click-to-close {
    text-align: center;
    cursor: pointer;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Adjust the maximum width as needed */
    margin: 0 auto; /* Center the video */
}

video {
    width: 100%;
    height: auto;
}

/* Added CSS for background image */
.overlay {
    background-size: cover; /* Adjust to cover the entire screen */
    background-repeat: no-repeat; /* Do not repeat the background image */
    background-position: center; /* Center the background image */
    background-color: rgba(0, 0, 0, 0.7); /* Transparent background color */
}
