.duo {
  display: flex;
  gap: 16px;
  margin: 16px auto;
}
.duo-col {
  position: relative;
  width: calc(50% - 8px);
  display: flex;
  aspect-ratio: 16/9;
}
.duo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.duo-video-paused {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duo-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.duo-video-play .duo-controls-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(27, 27, 28, 0.4);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition: ease 0.5s;
}
.duo-video-play .duo-controls-btns svg {
  transition: ease 0.5s;
  fill: #FBF6F1;
}
.duo-video-play .duo-controls-btns:hover {
  cursor: pointer;
  background-color: #F78357;
  transform: scale(0.9);
}
.duo-video-play .duo-controls-btns:hover svg {
  transform: scale(1.2);
}

.play-control {
  display: none;
  width: 20px;
  height: 22px;
}

.pause-control {
  display: none;
  width: 20px;
  height: 28px;
}

.duo-control-show {
  display: block;
}

.duo-video-play {
  opacity: 0;
  transition: ease 0.3s;
}

.duo-col:hover .duo-video-play {
  opacity: 1;
}

@media (max-width: 1664px) {
  .duo {
    margin: 16px 32px;
    width: calc(100% - 64px);
  }
}
@media (max-width: 768px) {
  .duo {
    gap: 16px;
    flex-direction: column;
    margin: 16px;
    width: calc(100% - 32px);
  }
  .duo-col {
    width: 100%;
  }
}