div.videos .head {
    display: none;
    text-align: center;
    padding: 0;
}
div.videos .head.showed {
    display: flex;
    justify-content: center;
}
div.videos .body .content {
    display: none;
}
div.videos ul li {
    list-style: none !important;
    display: inline-block !important;
    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;
    margin-left: 2px;
    margin-right: 2px;
}
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%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
div.videos ul li div i {
    font-size: 35px;
}
div.videos ul li img {
    width: 100%;
}
div.videos iframe {
    border: none;
    width: 100%;
    height: 515px;
}
@media (max-width: 600px) {
    div.videos iframe {
        height: 400px;
    }
}
@media (max-width: 500px) {
    div.videos iframe {
        height: 375px;
    }
}
@media (max-width: 420px) {
    div.videos iframe {
        height: 250px;
    }
}
