.firt-video-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  max-width: 1224px;
  margin-bottom: 1rem;
}

#first-video iframe {
  width: 524px;
  height: 331px;
  border-radius: 8px;
}
#first-video-info {
  width: calc(100% - 500px);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .firt-video-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  #first-video-info {
    width: 100%;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #first-video {
    width: 100%;
  }
  #first-video iframe {
    width: 100%;
    min-height: 230px;
    height: auto;
    border-radius: 8px;
  }
}
