.section-videos {
  margin-top: 10rem;
}
.section-videos .section__inner {
  width: 100%;
}
.section-videos .section__content {
}

.section-videos .videos-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.6rem;
}
.section-videos .video-item {
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
  background-color: #e8ebed;
}

.section-videos .video-item .media-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.section-videos .video-item .video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: contain;
  object-position: center;
}
