.video-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.video__items {
  display: flex;
  flex-direction: column;
}

.swiper {
  overflow: visible;
}

.swiper-slide {
  display: flex;
  height: auto;
}

.swiper-slide > * {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.swiper-wrapper {
  align-items: stretch;
}

.video-head  > h2{
    color: var(--color-primary--1);
    font-family: Barlow;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}

.video__link a {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--color-primary--1);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 36px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.833rem;
  letter-spacing: 0.5px;
}
.video__link {
  align-self: center;
  padding-bottom: 55px;
}

.video__link a:hover {
  filter: brightness(1.1);
}

@media screen and (min-width: 999px) {
    .video__items {
    flex-direction: row;
    }
    .video-head  {
        padding-left: 128px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .video-wrapper {
        gap: 64px;
    }
    .video-head  > h2{
        color: var(--color-primary--1);
        max-width: 945px;
        font-size: 48px;
        margin: 0;
    }
}