
/*==========================
//  cta section 
===========================*/

.cta-block{
    background-color: $primary-color;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    &::after {
        position: absolute;
        content: "";
        right: -150px;
        top: -180px;
        background: url(../images/circle-shape.png) no-repeat center center/contain;
        width: 400px;
        height: 400px;
        border-radius: 50%;
    }
    .block-title {
       font-size: 30px;
       color: $white-color;
       line-height: 1.3;
       margin-bottom: 20px;
    }
    .desc {
      padding: 0 20px;
      p {
        font-size: 18px;
        font-weight: 500;
        color: $white-color;
        margin-bottom: 20px;
      }
    }
    .btn {
      font-size: 18px;
    }
}
 
@media (min-width: 991px){
    .cta{
       padding: 0;
    }
    .cta-block {
       background-color: $primary-color;
       margin-bottom: -190px;
       &::before {
            position: absolute;
            content: '';
            left: 0;
            top: -40px;
            background: url(../images/dots-shape.png) no-repeat center center / contain;
            width: 180px;
            height: 180px;
        }
        .block-title {
          font-size: 48px;
          margin-bottom: 23px;
        }
       .desc {
            p {
                font-size: 26px;
                margin-bottom: 35px;
            }
       }
    }
}
 
.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;
    }
}