.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: var(--second-background);
    /* background-color: var(--main-background-lo);
    backdrop-filter: blur(7.5px); */
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 100;
    transition: 0.4s;
    overflow: hidden;
}

.modal-close {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-white);
    font-size: 50px;
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    transition: 0.4s;
}

.modal-close::hover {
    color: var(--main-red);
    scale: 1.05;
}

.modal video {
    border-radius: 10px;
}

@media(max-width: 980px) {
    .modal video {
        max-width: 90%;
    }
}