#tuturial-stats-section .stats-section__stats {
  display: flex;
  justify-content: center;
}

#videos-section .container {
  max-width: 100rem;
}

.videos-tutorial-container {
  display: flex;
  flex-direction: column;
}

.video-container {
  display: flex;
}

.video-container:first-of-type {
  height: 10rem;
  display: flex;
}

.video-container__left {
  position: relative;
  flex: 1;
  /* height: 100%; */
  border-right: 2px solid var(--blue);
  padding-right: 4rem;
}

.video-container__left::before,
.video-container:last-of-type .video-container__left::after {
  content: "";
  background: var(--cyan);
  width: 2rem;
  height: 2rem;
  background-size: 2rem 2rem;
  border-radius: 50%;
  border: 4px solid white;
  position: absolute;
  top: 0;
  right: -11px;
}

.video-container:last-of-type .video-container__left::after {
  top: 100%;
}

.video-container__left,
.video-container__right {
  padding-bottom: 10rem;
}

.video-container__right {
  padding-left: 4rem;
  flex: 1;
  height: 100%;
  position: relative;
}

.video-image-placeholder {
  width: 40rem;
  aspect-ratio: 16/9;
  height: auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.video-image-overlay {
  content: "";
  width: 100%;
  height: 100%;
  background-size: cover;
  background-color: var(--dark);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 5;
}

.video-image-overlay:hover {
  opacity: 0.2;
}

#video-play-btn {
  background-color: var(--blue);
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* transform: translateY(-50%); */
  z-index: 2;
  transition: background-color 0.4s ease-in-out;
}

.video-container .benefit-item {
  width: 100%;
  max-width: 36rem;
}

.video-image-placeholder {
  transition: all 0.3s ease-in-out;
  max-width: 40rem;
  width: 100%;
}

.video-image-placeholder {
  width: 100%;
  /* display: none; */
}

.video-image-placeholder img {
  width: 100%;
}

.video-image-placeholder:hover #video-play-btn,
#video-play-btn:hover {
  background-color: var(--darkerblue);
}

.video-image-placeholder:hover,
#video-play-btn:hover {
  filter: brightness(0.8);
}

#more-tutorials-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

#more-tutorials-container .faq-group-items {
  max-width: 80rem;
  margin-top: 4rem;
}

@media all and (max-width: 1000px) {
  .stats-section__text h2 {
    width: auto;
  }

  .video-container {
    flex-direction: column;
  }

  .video-container__left,
  .video-container__right {
    border-left: 2px solid var(--blue);
    border-right: none;
    padding-left: 4rem;
  }

  .video-container__left::before,
  .video-container:last-of-type .video-container__left::after {
    left: -11px;
  }

  .video-container__left,
  .video-container__right {
    padding-bottom: 4rem;
  }

  .video-container .benefit-item {
    flex-direction: column;
  }

  .video-container:nth-of-type(odd) {
    flex-direction: column-reverse;
  }

  .video-container:nth-of-type(odd) .video-container__left::before {
    display: none;
  }

  .video-container:nth-of-type(odd) .video-container__right::before {
    content: "";
    background: var(--cyan);
    width: 2rem;
    height: 2rem;
    background-size: 2rem 2rem;
    border-radius: 50%;
    border: 4px solid white;
    position: absolute;
    top: 18px;
    left: -11px;
  }

  .video-container:first-of-type .video-container__right::before {
    top: 0;
  }

  .video-container:nth-of-type(odd) .video-container__left {
    padding-right: 0;
  }

  .video-container:last-of-type .video-container__left::after,
  .video-container:nth-of-type(odd):not(:last-of-type)
    .video-container__right::before {
    /* top: 18px; */
  }

  .video-container .video-container__left::before {
    top: 18px;
  }

  .video-container:not(:first-of-type) .video-container__right::before {
    top: 18px;
  }
}
