.blist-wrapper{
    display: flex;
    height: auto;
    
    margin: 2rem 6rem;
}

.descR{
    flex: 1;
}

.descR p{
    font-weight: 600;
    font-size: 16px;
}

.point-package{
    display: block;
    width: 50%;
    padding-right: 2rem;
}

.glyphicon.check{
    color: #3155a4;
    transform: translate(25%, 0) translate(-1px, -1px);
}

.bullet{
    font-size: 16px;
    font-weight: 700;
}
.bulletL, .descL{
    width: 4rem;
    position: relative;
}

.bulletR{
    color: #3155a4;
}

.row-a, .row-b{
    display: flex;
}

 .outside{
    height: 18px;
} 

.inside{
    background-color: #3155a4;
    height: 12px;
    width: 12px;
    transform: translate(25%, 25%) translate(-1px, -1px);
    border-radius: 50%;
}

.revamp-bullets{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: inherit;
    justify-content: space-evenly;
}

@media screen and (max-width: 767px){
    .point-package{
        width: 100%;
    }
}

.point-package.go svg .twinkle-alt{
    animation-name: flicker;
    animation-direction: alternate;
    animation-duration: 1s;
    animation-iteration-count: 1;
}

.point-package.go svg .twinkle{
    animation-name: flicker-1;
    animation-direction: alternate;
    animation-duration: 1s;
    animation-iteration-count: 1;
}




@keyframes flicker-1 {
    0%,
    26%,
    60%,
    100% {
      opacity: 1;
    }
    13%,
    35%,
    55%,
    70% {
      opacity: 0;
    }
  }
  
  @keyframes flicker {
  
    0%,
    50%,
    75%,
    100% {
      opacity: 1;
    }
    25%,
    62.5%,
    87.5% {
      opacity: 0;
    }
  }