div.videos .head {
    display: none;
}
div.videos .body .content {
    display: none;
}
div.videos ul li {
    list-style: none !important;
    display: inline-block;
    width: 120px;
    height: 90px;
    position: relative;
    cursor: pointer;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    color: black;
    opacity: 0.6;
}
div.videos ul li:hover {
    color: #da1e29;
    opacity: 1;
}
div.videos ul li.active {
    color: #da1e29;
    opacity: 1;
}
div.videos ul li div {
    width: 100%;
    height: 100%;
    text-align: center;
}
div.videos ul li div i {
    position: relative;
    top: 50%;
    margin-top: -0.625em;
    font-size: 35px;
}
div.videos ul li img {
    position: absolute;
}
div.videos iframe {
    border: none;
    width: 100%;
    height: 515px;
}
@media (max-width:991px) {
    div.videos ul li {
        width: 90px;
        height: 67px;
    }
    div.videos ul li img{
        width: 90px;
    }
}
@media (max-width:680px) {
    div.videos iframe {
        height: 250px;
    }
}
@media (max-width:420px) {
    div.videos ul li {
        width: 40px;
        height: 30px;
    }
    div.videos ul li img{
        width: 40px;
    }
}
@media (max-width:320px) {
    div.videos ul li {
        width: 35px;
        height: 27px;
    }
    div.videos ul li img{
        width: 35px;
    }
    div.videos ul li div i {
        position: relative;
        top: 0;
        margin-top: 1px;
        font-size: 25px;
    }
}
