.center-video {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.wrapper-video {
  display: flex;
  grid-gap: 1em;
  overflow: hidden;
  width: 55em;
}
.wrapper-video > .inner-video {
  display: flex;
  grid-gap: 1em;
  transition: all 1s ease-in-out;
}
.card-video {
  border-radius: 0.5em;
}
.card-video > img {
  border-top-right-radius: inherit;
  border-top-left-radius: inherit;
  display: block;
  width: 17.5em;
}
.card-video > .content-video {
  background: #ff6e42;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  padding: 1em;
  text-align: center;
}
.card-video > .content-video > h1, .card-video > .content-video > h3 {
  margin: 0.35em 0;
}
.card-video > .content-video > h1 {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
}
.card-video > .content-video > h3 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 300;
}
.map-video {
  margin-top: 1em;
}
.map-video > button {
  all: unset;
  background: #ff6e42;
  cursor: pointer;
  margin: 0 0.125em;
  position: relative;
  user-select: none;
  border-radius: 100%;
  height: 1em;
  width: 1em;
}
.map-video > button.active:after {
  background: #fff;
  content: "";
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  border-radius: 100%;
  height: 0.5em;
  width: 0.5em;
}
