.video-popups {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
}
.video-popups .box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-popups .box video {
    width: 60%;
    height: 60vh;
}
.video-popups .box .close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}
.video-popups .box .close svg {
    width: 100%;
}
@media screen and (max-width: 1080px) {
    .video-box .box .text .title {
        font-size: 42px;
        line-height: 42px;
        color: #f6f6f6;
        text-align: center;
        margin-top: 30px;
    }
    .video-box .box .text .p {
        font-size: 26px;
        line-height: 26px;
        color: #f6f6f6;
        text-align: center;
        margin-top: 27px;
    }
    .video-box .box .text .other {
        display: none;
    }
}
@media screen and (max-width: 680px) {
    .video-box .box .text .title {
        font-size: 32px;
        line-height: 40px;
        color: #f6f6f6;
        text-align: center;
        margin-top: 30px;
    }
    .video-box .box .text .p {
        font-size: 24px;
        line-height: 26px;
        color: #f6f6f6;
        text-align: center;
        margin-top: 27px;
    }
    .video-popups .box video {
        width: 90%;
        height: 40vh;
    }
}