/**
    Button Styles 
*/
.cr-btn,
a.cr-btn,
button.cr-btn {
  display: inline-block;
  height: 50px;
  color: #fff;
  background: #47BB8F;
  padding: 11px 30px;
  border-radius: 20px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  font-size: 16px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  border: none;
  outline: none;
  overflow: hidden;
  vertical-align: middle;
  -webkit-transform: translateY(0) translateZ(0);
  -moz-transform: translateY(0) translateZ(0);
  -ms-transform: translateY(0) translateZ(0);
  -o-transform: translateY(0) translateZ(0);
  transform: translateY(0) translateZ(0);
  /* Small Buton */
  /* Large Button */
  /* Color Variation */
  /* Bordered Button */ }
  .cr-btn span,
  a.cr-btn span,
  button.cr-btn span {
    position: relative;
    z-index: 2; }
  .cr-btn b,
  a.cr-btn b,
  button.cr-btn b {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    border-radius: 50%;
    -webkit-transition: width 0.6s ease-in-out, height 0.6s ease-in-out;
    -moz-transition: width 0.6s ease-in-out, height 0.6s ease-in-out;
    -ms-transition: width 0.6s ease-in-out, height 0.6s ease-in-out;
    -o-transition: width 0.6s ease-in-out, height 0.6s ease-in-out;
    transition: width 0.6s ease-in-out, height 0.6s ease-in-out;
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.1);
    z-index: 1; }
  .cr-btn:hover,
  a.cr-btn:hover,
  button.cr-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px); }
    .cr-btn:hover b,
    a.cr-btn:hover b,
    button.cr-btn:hover b {
      height: 400px;
      width: 400px; }
  .cr-btn:active,
  a.cr-btn:active,
  button.cr-btn:active {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px); }
  .cr-btn.cr-btn-sm,
  a.cr-btn.cr-btn-sm,
  button.cr-btn.cr-btn-sm {
    height: 40px;
    font-size: 14px;
    padding: 5px 30px; }
  .cr-btn.cr-btn-lg,
  a.cr-btn.cr-btn-lg,
  button.cr-btn.cr-btn-lg {
    height: 56px;
    font-size: 18px;
    padding: 12px 35px; }
  .cr-btn.cr-btn-white,
  a.cr-btn.cr-btn-white,
  button.cr-btn.cr-btn-white {
    color: #47BB8F;
    background: #fff; }
    .cr-btn.cr-btn-white b,
    a.cr-btn.cr-btn-white b,
    button.cr-btn.cr-btn-white b {
      background: #47BB8F; }
    .cr-btn.cr-btn-white:hover,
    a.cr-btn.cr-btn-white:hover,
    button.cr-btn.cr-btn-white:hover {
      color: #ffffff; }
  .cr-btn.cr-btn-dark,
  a.cr-btn.cr-btn-dark,
  button.cr-btn.cr-btn-dark {
    color: #ffffff;
    background: #333333; }
    .cr-btn.cr-btn-dark b,
    a.cr-btn.cr-btn-dark b,
    button.cr-btn.cr-btn-dark b {
      background: rgab(255, 255, 255, 0.1); }
  .cr-btn.cr-btn-minimal,
  a.cr-btn.cr-btn-minimal,
  button.cr-btn.cr-btn-minimal {
    color: #333333;
    background: #fff; }
    .cr-btn.cr-btn-minimal b,
    a.cr-btn.cr-btn-minimal b,
    button.cr-btn.cr-btn-minimal b {
      background: #333333; }
    .cr-btn.cr-btn-minimal:hover,
    a.cr-btn.cr-btn-minimal:hover,
    button.cr-btn.cr-btn-minimal:hover {
      color: #ffffff; }
  .cr-btn.cr-btn-transparent,
  a.cr-btn.cr-btn-transparent,
  button.cr-btn.cr-btn-transparent {
    background: transparent;
    border: 1px solid #fff;
    -webkit-transition: all 0.6s ease-in-out 0s, border-color 0.4s ease-in-out 0.2s;
    -moz-transition: all 0.6s ease-in-out 0s, border-color 0.4s ease-in-out 0.2s;
    -ms-transition: all 0.6s ease-in-out 0s, border-color 0.4s ease-in-out 0.2s;
    -o-transition: all 0.6s ease-in-out 0s, border-color 0.4s ease-in-out 0.2s;
    transition: all 0.6s ease-in-out 0s, border-color 0.4s ease-in-out 0.2s; }
    .cr-btn.cr-btn-transparent b,
    a.cr-btn.cr-btn-transparent b,
    button.cr-btn.cr-btn-transparent b {
      background: #47BB8F; }
    .cr-btn.cr-btn-transparent:hover,
    a.cr-btn.cr-btn-transparent:hover,
    button.cr-btn.cr-btn-transparent:hover {
      border-color: #47BB8F; }
  .cr-btn.cr-btn-round,
  a.cr-btn.cr-btn-round,
  button.cr-btn.cr-btn-round {
    border-radius: 100px;
    overflow: hidden; }

.bg-theme .cr-btn.cr-btn-white b,
.bg-theme a.cr-btn.cr-btn-white b,
.bg-theme button.cr-btn.cr-btn-white b {
  display: none; }
.bg-theme .cr-btn.cr-btn-white:hover,
.bg-theme a.cr-btn.cr-btn-white:hover,
.bg-theme button.cr-btn.cr-btn-white:hover {
  color: #47BB8F; }

.bg-dark-light .cr-btn.cr-btn-white,
.bg-dark-light a.cr-btn.cr-btn-white,
.bg-dark-light button.cr-btn.cr-btn-white {
  color: #000000; }
  .bg-dark-light .cr-btn.cr-btn-white b,
  .bg-dark-light a.cr-btn.cr-btn-white b,
  .bg-dark-light button.cr-btn.cr-btn-white b {
    display: none; }
  .bg-dark-light .cr-btn.cr-btn-white:hover,
  .bg-dark-light a.cr-btn.cr-btn-white:hover,
  .bg-dark-light button.cr-btn.cr-btn-white:hover {
    color: #000000; }

/* Readmore Style */
.cr-readmore,
a.cr-readmore,
button.cr-readmore {
  transition: 0.7s;
  display: inline-block;
  color: #000000;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700; 
  padding: 3px 8px;
  background-color: #f8705b;
  border-radius: 10px;
}
  .cr-readmore:hover,
  a.cr-readmore:hover,
  button.cr-readmore:hover {
    color: #222222;
    background-color: #f8644d;
    box-shadow: 0 0 5px black;
    transform: scale(1.1);
    transition: 0.7s;}

  .cr-readmore:active,
  a.cr-readmore:active,
  button.cr-readmore:active {
    color: #000000;
    background-color: #fa5c44;
    box-shadow: 0 0 10px rgb(241, 82, 9);
    transform: scale(0.9);
    transition: 0.7s;}

.cr-readmore2 {
  color: #555;
  font-size: 14px;
  line-height: 26px;
  display: inline-block;
  font-weight: 500; }
  .cr-readmore2:after {
    content: "\eb55";
    font-family: "Icofont";
    padding-left: 2px;
    font-size: 18px;
    line-height: 26px;
    vertical-align: middle;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s; }
  .cr-readmore2:hover {
    color: #47BB8F; }
    .cr-readmore2:hover:after {
      padding-left: 7px; }

.buttons-showcase .container {
  margin-top: -3rem; }

@media only screen and (max-width: 575px) {
  .buttons-showcase .container div[class^="col-"] {
    text-align: center; } }