   .outline-btn {
      display: inline-block;
      padding: 10px 35px;
      margin: 3px;
      border: 2px solid #6195ff;
      background: transparent;
      border-radius: 3px;
      -webkit-transition: 0.2s opacity;
      transition: all 0.3s ease-out;
      color: #6195ff;
    }

    .pricing {
      position: relative;
      text-align: center;
      border: 1px solid #EEE;
      background-color: #FFF;
      z-index: 11;
      margin:10px 0px;
    }

    .pricing::after {
      content: "";
      background-color:rgb(104,107,115);
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 0%;
      z-index: -1;
      -webkit-transition: 0.2s;
      transition: 0.5s all ease-in-out;
      color: white !important;
      color:#fff;
    }

    .pricing:hover:after {
      height: 100%;
    }

    .pricing .price-head {
      position: relative;
    margin-bottom: 15px;
    }

    .pricing .price-title {
      display: block;
      padding: 20px 0px 20px;
      -webkit-transition: 0.2s color;
      transition: 0.2s color;
    }

    .pricing:hover .price-title {
      color: #6195FF;
    }
    .pricing:hover .price-content{
color: white;
    }
.price-content{
    list-style:none;
    margin:0px;
}
.price-content > li >p {
    margin:5px;
}
    .pricing .price {
      position: relative;
      width: 100px;
      height: 100px;
      line-height: 140px;
      text-align: center;
      margin: auto;
      border-radius: 50%;
      border: 2px solid #6195FF;
    }

    .pricing .price h3 {
      margin: 0px;
      -webkit-transition: 0.2s color;
      transition: 0.2s color;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      top: 50%;
      position: absolute;
      left: 0;
      right: 0;
    font-size: 1.4rem;
    }

    .pricing:hover .price h3 {
      color: #fff;
    }

    .pricing .duration {
      display: block;
      font-size: 14px;
      text-transform: uppercase;
      color: #10161A;
      -webkit-transition: 0.2s color;
      transition: 0.2s color;
    }

    .pricing:hover .duration {
      color: #fff;
    }

    .pricing .price-btn {
    padding:10px 0px;
    }