.cart-your-video {
  padding: 0px 100px;
  margin: 50px 0;
}

.topic-content {
  margin: auto;
  width: 500px;
  height: 65px;
  border-bottom: 3px solid #136BAA;
  border-top: 3px solid #136BAA;
  display: flex;
  align-items: center;
  margin-bottom: 70px;
  margin-top: 70px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.pointer {
  width: 500px;
  height: 50px;
  position: relative;
  background-color: #136BAA;
  display: flex;
  align-items: center;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px auto;
}

.pointer:after {
  content: " ";
  position: absolute;
  left: -20px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 20px solid #136BAA;
  border-top: 30px solid transparent;
  border-bottom: 20px solid transparent;
  transform: rotate(180deg);
}

.pointer:before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 20px solid #136BAA;
  border-top: 30px solid transparent;
  border-bottom: 20px solid transparent;
}

.pointer>h2 {
  color: #fff;
  text-shadow: 0px 1px #363636;
}

.your-video {
  border-radius: 5px;
  box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
  padding: 10px;
  display: flex;
  gap: 30px;
}

.your-video:hover {
  box-shadow: rgba(3, 101, 214, 0.603) 0px 0px 3px 5px;
}

.your-video .img {
  width: 50%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.your-video .img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-your-video {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.detail-your-video > h2,
.detail-your-video > h3{
  color: #363636;
}

.btn-watch {
  width: 150px;
  height: 45px;
  display: block;
  border-radius: 5px;
  color: white;
  text-align: center;
  line-height: 45px;
  background-color: darkblue;
}