.youtube .container {
	position: relative;
}
.youtube .nav {
	display: flex;
    position: absolute;
    top: 70px;
    right: 0;
}
.youtube .nav > *+* {
    margin-left: 10px;
}

.yt-carousel__img {
    position: relative;
    height: 232px;
    border-radius: 8px;
    overflow: hidden;
}
.yt-carousel__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.yt-carousel__img::before {
  content: '';
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 70px;
  height: 53px;
  background: url(./yt.svg) center no-repeat;
  background-size: contain;
}
.yt-carousel__img::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, 0.2);
    opacity: 0;
    transition: all 0.3s linear;
}
.yt-carousel__img:hover::after {
    opacity: 1;
}
.yt-carousel .slick-list {
	margin-left: -38px;
}

.youtube__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 14px;
  width: 215px;
  height: 56px;
  margin: 30px auto 0;
  background: #FF2F2F;
  border-radius: 30px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s linear;
}

.youtube__btn svg {
  width: 30px;
  height: 23px;
  fill: #fff;
}

.youtube__btn:hover {
  background: #E90000;
}

@media (max-width: 767px) {
	.yt-carousel .slick-list {
		margin-left: 0;
	}
	.youtube .nav {
		top: 30px;
		right: 10px;
	}
	.youtube h2 {
		padding-right: 30px;-
	}
}