#youtube_channel {}

#youtube_channel .items {
  margin: 0 -30px 30px;
  display: flex;
  flex-wrap: nowrap;
}

#youtube_channel .item {

  padding: 0px 30px;

}

#youtube_channel .cover {
  aspect-ratio: 1.8;
  position: relative;
  overflow: hidden;
}

#youtube_channel .cover img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms;

}

#youtube_channel .inner:hover .cover img {
  transform: translate(-50%, -50%) scale(1.1);
}



#youtube_channel .body {
  border-left: 3px dotted black;

}

#youtube-modal .btn-close {
  filter: invert(1);
}

#youtube-modal .modal-header {
  background-color: black;
}

#youtube-modal-title {
  color: #fff;
}

#youtube-modal-description {
  font-size: 1rem;
  padding: 20px 0;
  background-color: #ddd;

}

@media screen and (max-width:767px) {
  #youtube_channel .items {

    flex-direction: column;
    align-items: center;

  }

  #youtube_channel .item {
    width: 80% !important;
    margin-bottom: 1.5rem;
  }

}