/* Video */
.video-list {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 90px;
}

.video-list a {
    width: calc(100% / 3 - 17px);
    margin-right: 25px;
    margin-bottom: 35px;
    display: block;
    text-align: center;
}

.video-list a:nth-child(3n+3) {
    margin-right: 0px;
}

.video-list a:hover .mov img {
    opacity: .9;
}

.video-list a:hover .name {
    color: #41A777;
}

.video-list span {
    display: block;
}

.video-list .mov {
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.video-list .mov img {
    width: auto;
    border-bottom: 1px solid #7d7d7d;
    float: left;
    transition: all .2s;
}

.video-list .name {
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
    color: #272727;
    transition: all .2s;
}

@media only screen and (max-width: 992px) {
    .video-list {
        justify-content: space-between;
    }

    .video-list a {
        width: calc(50% - 54px);
        margin-right: 0px;
    }
}

@media only screen and (max-width: 480px) {
    .video-list a {
        width: calc(50% - 10px);
    }

    .video-list .mov img {
        max-height: 110px;
    }
}

@media only screen and (max-width: 320px) {
    .video-list a {
        width: 100%;
    }

    .video-list .mov img {
        max-height: 1100px;
    }
}