.page-project {
    margin-top: 5em;
    padding: 5em;
}

.page-project_title {
    margin-bottom: 1em;
}

.page-project_adapt {
    display: flex;
    align-items: flex-start;
}

.page-project_video {
    width: 50%;
    margin-bottom: 3em;
}

.scroll-stop {
    overflow: hidden;
}

.modal-window_img {
    width: 100%;
}

.modal-window {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100vh;
    background: rgba(79, 79, 79, 0.8);
    opacity: 0;
    transition: opacity 0.3s;
    padding: 2em;
}

.modal-window__show {
    opacity: 1;
    z-index: 10000;
}

.page-project_text {
    font-size: 1.2em;
    margin-left: 1em;
}

.page-project_link {
    color: #49aec0;
}

/* Media requests */
@media screen and (max-width: 1024px) {
    .page-project_video {
        width: 70%;
    }

    .page-project_adapt {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .page-project {
        padding: 3em 2em;
    }

    .page-project_video {
        width: 90%;
    }
}

@media screen and (max-width: 425px) {
    .page-project {
        padding: 3em 1em;
    }

    .page-project_video {
        width: 100%;
    }
}