.inline-row{
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.row-a h2{
    color: black;
    font-size: 18px;
    font-weight: 700;
}
.row-a h2:hover{
    color: #3155a4;
}
.bulletR h2{
    font-size: 15px;
    font-weight: 700;
    color: black;
}

a.point-package:hover{
    color: #3155a4;
}

.outside img{
    width: 48px;
    margin-bottom: 0.5rem;
}

.bulletL{
    flex: 1;
}

.bulletR{
    flex: 4;
}


/* .blist-wrapper{

    display: flex;
    height: auto;
    
    margin: 2rem 0;
}

.descR{
    flex: 1;
}


.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;
}

.inline-row, .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 svg .twinkle-alt{
    animation-name: flicker;
    animation-direction: alternate;
    animation-duration: 0.5s;
    animation-timeline: scroll(block nearest);
}

.point-package svg .twinkle{
    animation-name: flicker-1;
    animation-direction: alternate;
    animation-duration: 0.2s;
    animation-timeline: scroll(block nearest);
}




@keyframes flicker-1 {
    0%,
    26%,
    50%,
    100% {
      opacity: 1;
    }
    13%,
    35%,
    75% {
      opacity: 0;
    }
  }
  
  @keyframes flicker {
  
    0%,
    50%,
    100% {
      opacity: 1;
    }
    25%,
    75% {
      opacity: 0;
    }
  } */