/* hero bg */
.video-tutorial-hero {
  position: absolute;
  height: 888px;
  width: 100%;
  margin: auto;
  z-index: -1;
  overflow: hidden;
  background-color: var(--blue1);
  transition: height 0.4s ease;
}

.video-tutorial-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* new hero content */
.video-tutorial-container {
    color: #fff;
    margin: 204px auto 78px;
    transition: margin 0.4s ease;
}
.video-tutorial-container .h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
    transition: margin-bottom 0.4s ease;
}
.video-container {
    height: 400px;
    max-width: 711px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin: auto;
    transition: height 0.4s ease;
}
.video-container iframe,
.video-container video {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    transition: height 0.4s ease;
}
.video-tutorial-container .main-button {
    width: max-content;
    height: 50px;
    padding: 0 30px;
    margin: 32px auto 0;
    transition: margin 0.4s ease;
}
/* how it works */
.how-it-works.how-it-works-tutorial {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--blue1);
  color: #fff;
  padding-top: 61px;
  padding-bottom: 61px;
  background-image: url('/wp-content/themes/probidas/assets/img/how-it-works-frame.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  transition: padding-bottom 0.4s ease;
}
.how-it-works-tutorial .icons-line {
    margin-bottom: 50px;
    transition: margin-bottom 0.4s ease;
}
.how-it-works-tutorial .main-button {
    width: max-content;
    height: 50px;
    padding: 0 30px;
    margin: 32px auto 0;
    transition: margin 0.4s ease;
}

/* Responsive */
@media (max-width: 1050px) {
    .video-container {
        max-height: 350px;
    }

}
@media (max-width: 768px) {
    .video-tutorial-hero {
        height: 652px;
    }
    .video-container {
        max-height: 250px;
    }
    .video-tutorial-title.h1 {
        font-size: 26px;
        line-height: 32px;
        text-align: left;
        align-items: start;
        margin-bottom: 24px;
    }
    .video-tutorial-container {
        margin: 152px auto 100px;
    }
    .video-tutorial-container .main-button {
        width: max-content;
        padding: 0 30px;
        margin: 24px 0 0;
        height: 45px;
    }
    .how-it-works-tutorial .main-button {
        width: max-content;
        padding: 0 30px;
        margin: 24px auto 0;
        height: 45px;
    }
    .how-it-works.how-it-works-tutorial {
        padding-bottom: 48px;
    }
    .how-it-works-tutorial .icons-line {
        margin-bottom: 40px;
    }
}
@media (max-width: 500px) {
    .video-container {
        max-height: 200px;
    }
}