

/*------- Button Section Starts -------*/


.read-more > a {
  border: 2px solid rgb(254, 254, 254);
/* Apply rounded corners */
  color: rgb(255, 255, 255);
  display: inline-block;
  font-size: 1.3rem;
  overflow: hidden;
  padding: 10px 30px;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: 0.5s linear;
  -moz-transition: 0.5s linear;
  -ms-transition: 0.5s linear;
  -o-transition: 0.5s linear;
  transition: 0.5s linear;
}
.read-more > a > span {

background-color: rgba(27, 84, 225, 0.8);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;

  display: block;
  height: 0;
  position: absolute;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transition: height 1s, width 1s;
  -moz-transition: height 1s, width 1s;
  -ms-transition: height 1s, width 1s;
  -o-transition: height 1s, width 1s;
  transition: height 1s, width 1s;
  width: 0;
  z-index: -1;
}
.read-more > a:hover {
  color: #ffffff;
}
.read-more > a:hover > span {
  height: 700px;
  width: 700px;
}

/*------- Button Section Ends -------*/
