.movie {
    padding: 100px 0;
    /* background-image: url(/img/background-1.jpg); */
    overflow: hidden;
}

.movie-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.movie__first {
    width: 100%;
    border-radius: 30px;
    background-color: #f0f5f8;
}

.movie__first-video {
    width: 100%;
    padding: 30px;
}

.movie__second {
    width: 100%;
    border-radius: 30px;
    background-color: #f0f5f8;
}

.movie-scnd {
    background-color: #dff2fd;
}

.movie__second-video {
    width: 100%;
    padding: 30px;
}

.movie__text {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin-right: 50px;
}

.movie__text-title {
    font-size: 38px;
    line-height: 45px;
    color: #292929;
    text-align: center;
    margin-bottom: 50px;
}

.movie__text-subtitle {
    color: #7A7A7A;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
}

.movie__text-second {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin-left: 50px;
}

@media (max-width: 1000px) {
    .movie-container {
        flex-direction: column;
    }
    .movie__first {
        margin-top: 50px;
    }
    .movie__text {
        margin: 0;
    }
    .movie__text-second {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .movie__text-title {
        font-size: 26px;
    }
    .movie__text-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .movie {
        padding: 20px 0;;
    }
    .movie__text-title {
        margin-bottom: 20px;
    }
}