/* VIDEO */
.n--video{
    background-color: #fff;
    padding: 60px 0;
    margin-bottom: 60px;
    position:  relative;
    z-index: 0;
}
.n--video__inner{
    height: calc((1096px - 20px) / 1.77);
    background-color: #f1f1ed;
    transition: all 0.2s;
    position:  relative;
}
.n--video__poster{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1111;
    width: 100%;
    height: 100%;
    opacity: 1;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
}
.n--video__poster-e{
    position:  absolute;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}
.n--video__poster:before{
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #31a8db;
    opacity: 0.2;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 50%;
    margin-left: -50px;
    transition: all 0.2s;
    z-index: 0;
}
.n--video__poster:after{
    content: "";
    display:  block;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -10px;
    border-left: 30px solid #fff;
    z-index: 0;
}
.n--video__poster:hover:before{
    opacity: 0.45;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.5);
}
.n--video-container{
    width: 100%;
    height: 100%;
}

/* ADAPTIVE */
@media (max-width: 1099px) {
    .n--video{
        padding: 30px 0;
        margin-bottom: 30px;
    }
    .n--video__inner{
        height: calc((910px - 20px) / 1.77);
    }
}
@media (max-width: 910px) {
    .n--video__inner {
        height: calc((100vw - 20px) / 1.77);
    }
}
@media (max-width: 639px) {
    .n--video .row{
        padding: 0;
    }
    .n--video__inner{
        height: calc(100vw / 1.77);
        border-radius: 0;
    }
}