.video{
    margin: 140px 0;
    position: relative;
}
@media (max-width: 991px){
    .video{
        margin: 80px 0;
    }
}
.video__inner{
    display: flex;
    justify-content: center;
}
.justifyLeft .video__inner{
    justify-content: flex-start;
}
.justifyRight .video__inner{
    justify-content: flex-end;
}
.videoPlayer{
    width: 1080px;
}
.videoPlayer__inner{
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
}
.videoPlayer iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
}