.main-slider__content p {
	color: #fff;
}

/*================================================
Video Area CSS
=================================================*/
.video-box {
  max-width: 1100px;
  position: relative;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}

.video-box::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(34, 36, 50, 0.52);
  border-radius: 10px;
  opacity: 0.6;
  z-index: 1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.video-box img {
  border-radius: 10px;
}

.video-box .video-btn {
  display: inline-block;
  width: 100px;
  height: 100px;
  font-size: 60px;
  text-align: center;
  line-height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  background: linear-gradient(44.44deg, #ED2775 7.79%, #FF7448 94.18%);
  border-radius: 50%;
  color: var(--whiteColor);
  -webkit-box-shadow: 15px 25px 35px rgba(38, 42, 55, 0.2);
          box-shadow: 15px 25px 35px rgba(38, 42, 55, 0.2);
}

.video-box .video-btn::after, .video-box .video-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid var(--whiteColor);
}

.video-box .video-btn::before {
  -webkit-animation: ripple 2s linear infinite;
          animation: ripple 2s linear infinite;
}

.video-box .video-btn::after {
  -webkit-animation: ripple 2s linear 1s infinite;
          animation: ripple 2s linear 1s infinite;
}

.video-box:hover::before {
  opacity: 0;
  visibility: hidden;
}

.video-box .shape img {
  border-radius: 0;
}
