.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 80%);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 20;
}
.modal.active {
    display: flex;
    opacity: 1;
}
.modal-content {
    /* background-color: #ff3d96; */
    padding: 3px;
    /* border-radius: 80px; */
    text-align: center;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    position: relative;
}
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    border: 2px solid black;
    z-index: 1000; /* Ensuring the close button is in front */
}
.video_home {
    height: 75vh;
    border-radius: 35px 35px 35px 0px;
}
@media only screen and (max-width: 480px) {
    .video_home {
        height: unset;
        width: 100%;
    }
}