.videos{
  padding-top: 0 !important;
  padding-bottom: 50px !important;
  background: #DDDDDD;
}

.videos.highlight{
  padding-bottom: 0 !important;
  background: transparent;
}

.videos h1{
  font-size: 25px;
  line-height: 27px;
  font-family: dinpro-bold, sans-serif;
  padding-bottom: 20px;
  margin-bottom: 30px;
  margin-top: 5px;
}

.videos .title-container{
  margin-bottom: 20px;
}

.videos .title-container h4{
  width: auto;
  display: inline-block;
  font-family: dinpro-light, sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  color: #4B4B4B;
  background: #DDDDDD;
  padding-right: 10px;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.videos .title-container .title-background{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  background: #9D9D9D;
  height: 1px;
  z-index: 1;
}

.videos .category-videos{
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.videos .category-video{
  flex: 0 0 calc((100% - 60px) / 4);
}

.videos .category-video.highlight{
  width: 100%;
}

.videos .category-video .category-video-cover {
  cursor: pointer;
}

.videos .category-video .category-video-cover img{
  width: 100%;
  border-radius: 5px;
}

.videos .category-video .category-video-title{
  font-family: dinpro-bold, sans-serif;
  margin-top: 5px;
  font-size: 18px;
  line-height: 22px;
}

.videos .category-video .category-video-description{
  margin-top: 3px;
  font-size: 14px;
  line-height: 17px;
}

.videos .category-video .play-button{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 26px;
  color: #fff;
  background: #C72B2E;
  padding: 10px 20px;
  border-radius: 6px;
}

.videos .category-video.loaded .category-video-cover > img{
  display: none;
}

.videos .category-video.loaded .play-button{
  display: none;
}

@media screen and (max-width: 1199px){
  .videos .category-video{
    flex: 0 0 calc((100% - 40px) / 3);
  }
}

@media screen and (max-width: 767px){
  .videos .category-video{
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media screen and (max-width: 567px){
  .videos .category-video{
    flex: 0 0 100%;
  }
}