.video {
    padding: 50px 0;
    background: #f2f2f2;
}

.video_area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.video_area iframe {
    width: 50%;
    height: 320px;
    background: #e4e4e4;
    border-radius: 5px;
}

.video_text {
    width: calc( 50% - 25px );
}

.video_text p + p {
    margin-top: 25px;
}




@media screen and (max-width: 1024px) {

	.video_area {
        flex-direction: column;
    }

    .video_area > * {
        width: 100% !important;
    }

    .video_area > * + * {
        margin-top: 25px;
    }

}

@media screen and (max-width: 979px) {
}

@media screen and (max-width: 767px) {
}

@media screen and (max-width: 320px) {
}

@media screen and (max-device-width: 480px) {
}







