﻿@charset "UTF-8";

body {
}

/* Video */
.video_wrapper {
    background-color: #F8F8F8;
    margin-bottom: 100px;
    padding: 70px 0 10px;
}

.video_content {
    position: relative;
    margin: 0 auto 60px;
    width: 100%;
    max-width: var(--maxContentWidth);
    aspect-ratio: 16 / 9;
}

    .video_content video {
        display: block;
        margin: 0 auto;
        height: 90%;
        width: 90%;
        max-width: var(--maxContentWidth);
    }

@media screen and (min-width: 920px) {
    .video_wrapper {
        margin-bottom: 150px;
        padding: 100px 0 50px;
    }

    .video_content video {
        height: 100%;
        width: 100%;
    }
}