.rs-parallax {
  padding: 0;
  margin: 0;
  height: 410px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #000;
  border-radius: 30px;
}
@media (max-width: 991.98px) {
  .rs-parallax {
    border-radius: 15px;
  }
}
.rs-parallax__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}
.rs-parallax__bg img,
.rs-parallax__bg video,
.rs-parallax__bg iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
@media (max-width: 991.98px) {
  .rs-parallax__bg img,
  .rs-parallax__bg video,
  .rs-parallax__bg iframe {
    border-radius: 15px;
  }
}
.rs-parallax__container {
  height: 100%;
  position: relative;
  z-index: 10;
}
.rs-parallax__content {
  padding: 50px 0px;
  height: 100%;
  max-width: 890px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
}
.rs-parallax__content .play-btn {
  width: 94px;
  height: 94px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  position: relative;
}
@media (max-width: 1169.98px) {
  .rs-parallax__content .play-btn {
    width: 75px;
    height: 75px;
  }
}
@media (max-width: 991.98px) {
  .rs-parallax__content .play-btn {
    width: 60px;
    height: 60px;
    margin-top: 16px;
  }
}
.rs-parallax__content .play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  background-color: var(--primary-color);
  opacity: 0.3;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .rs-parallax__content .play-btn:hover::after {
    width: calc(100% + 9px);
    height: calc(100% + 9px);
  }
}
.rs-parallax__content p {
  margin-top: 10px;
}
.rs-parallax__content h6 {
  margin-top: 20px;
}
@media (max-width: 1439.98px) {
  .rs-parallax__content h6 {
    margin-top: 10px;
  }
}
@media (max-width: 991.98px) {
  .rs-parallax__content h6 {
    font-size: 16px;
  }
}
.rs-parallax__content .rs-btn {
  margin-top: 30px;
}
@media (max-width: 1439.98px) {
  .rs-parallax__content .rs-btn {
    margin-top: 15px;
  }
}