/*================================================================================================
    Start Video CSS
===================================================================================================*/
.video-inner {
  padding: 180px 60px 60px;
  border-radius: 15px;
  text-align: center;
  max-width: 1890px;
  margin: auto;
  z-index: 2;
  position: relative;
}
.video-overlay::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 15px;
  opacity: 0.3;
  background: #000;
  z-index: -1;
}
.video-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 60px;
  margin-top: 155px;
  text-align: left;
}
.video-play-btn {
  width: 180px;
  height: 180px;
  border-radius: 100%;
  background: var(--white-color);
  line-height: 180px;
  font-size: 16px;
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
.video-play-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
.video-content .text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  max-width: 320px;
  color: var(--white-color);
}

/* Video Style 2  */
.video.video-style2 {
  min-height: 800px;
}
.video-style2 .video-inner {
  max-width: 100%;
  position: initial;
}
.video-style2 .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -90px;
  margin-top: -90px;
}

@media only screen and (min-width: 992px) and (max-width: 1199.99px) {
  .video-inner {
    padding: 60px 40px;
  }
  .video-content {
    margin-top: 60px;
  }
  .video-play-btn {
    width: 140px;
    height: 140px;
    line-height: 140px;
    font-size: 14px;
  }
  .video-content {
    padding-top: 40px;
    margin-top: 40px;
    display: block;
    text-align: center;
  }
  .video-content .text {
    line-height: 140%;
    max-width: 100%;
  }
  .video-content .theme-btn {
    margin: 24px 0px;
  }
  .video.video-style2 {
    height: 600px;
  }
}

@media only screen and (max-width: 991.99px) {
  .video-inner {
    padding: 32px;
  }
  .video-content {
    padding-top: 40px;
    margin-top: 40px;
    display: block;
    text-align: center;
  }
  .video-content .theme-btn {
    margin: 12px 0px;
  }
  .video-content .text {
    line-height: 140%;
    max-width: 100%;
  }
  .video.video-style2 {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .video-play-btn {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 12px;
  }
  .video-style2 .video-play-btn {
    margin-left: -50px;
    margin-top: -50px;
  }
  .video.video-style2 {
    height: 400px;
    min-height: 400px;
  }
}

/*================================================================================================
    End Video CSS
===================================================================================================*/
