/*--------------------------------------------------------------
 #  video Two Section
 --------------------------------------------------------------*/
 .hactora-video.video-two-section {
  position: relative;
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 151px 0 152px;
}
.hactora-video .video-two-sec-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hactora-video .video-two-sec-btn {
  height: 90px;
  width: 90px;
  color: #ffffff;
  border: 4px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.video-two-sec-icon{
      margin-left: 50px;
}
.hactora-video .video-two-sec-btn:hover {
  border: 4px solid var(--color-primary);
  color: var(--color-primary);
}
.hactora-video .video-two-sec-content {
  margin-left: 40px;
      text-align: center;
}
.hactora-video .video-two-sec-content h2 {
  font-size: 46px;
  color: #ffffff;
  font-weight: 800;
  line-height: 50px;
  margin-top: 30px;
}
.hactora-video .video-two-sec-content span {
  color: var(--color-primary);
}
.hactora-video .video-two-sec-content p {
  font-size: 37px;
  color: #ffffff;
  margin: 0;
  line-height: 90px;
  font-weight: 800;
}

@media only screen and (max-width: 767px) {
  .hactora-video .video-two-sec-inner {
    flex-direction: column;
  }

  .hactora-video .video-two-sec-content {
    margin-left: 0;
    text-align: center;
    margin-top: 20px;
  }
}

@media screen and (max-width:480px){
  .hactora-video.video-two-section{
    padding: 30px 0;
  }
  .video-two-sec-icon{
    margin-left: 0;
  }
  .hactora-video .video-two-sec-btn {
    height: 50px;
    width: 50px;
  }
    .hactora-video .video-two-sec-btn i{
      font-size: 20px !important;
    }
    .hactora-video .video-two-sec-content h2{
      font-size: 24px;
    }
    .hactora-video .video-two-sec-content p{
      font-size: 18px;
      line-height: 40px;
    }
}