
/*==========================
//  cta section 
===========================*/
.section-cta {
  background-size: cover;
  background-position: center center;
  
}
.cta-block {
  .block-title {
    font-size: 28px;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 20px;
  }
  .desc {
    font-size: 18px;
    line-height: 28px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 35px;
  }
}
@media (min-width: 992px) {
  .section-cta {
    padding-bottom: 180px;
    background-attachment: fixed;
  }
  .cta-block {
    .block-title {
      font-size: 64px;
      line-height: 74px;
    }
  }
}
.play-btn {
    display: inline-block;
    font-size: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    line-height: 100px;
    text-align: center;
    background-color: $secondary-color;
    color: $white-color;
    &:hover {
       color: $white-color;
       background-color: $primary-color;
    }
}