.modal-wrap.show {
    opacity: 1;
}
.modal-wrap {
    background: rgba(0,0,0,.85);
    /* opacity: 0; */
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 997;
    transition: .3s opacity;
}
.modal-video {
    /* max-width: 1000px; */
    /* height: 480px; */
    width: 90%;
    max-height: 90%;
    height: calc(1080 / 1920 * 90vw);
    max-width: calc(1920 / 1080 * 90vh);
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    right: 0;
    z-index: 998;
    margin: auto;
}
.embed-responsive {
    position: relative;
    display: block;
    height: 100%;
    padding: 0;
    overflow: hidden;
}
.embed-responsive-item {
    height: 100%;
    width: 100%;
}
.modal-close {
    position: fixed;
    opacity: .85;
    top: 5px;
    right: 12px;
    display: inline-block;
    z-index: 9999;
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}
.modal-close:focus{
border: 2px solid #fff;
}