.block-title {
    grid-area: block-title;
    text-transform: uppercase;
    font-weight: 700;
    color: #94d0f8;
  }
  .calllink {
    grid-area: calllink;
  }

.calllink {
  grid-area: calllink;
  text-align: center;
}
.ct-block {
  grid-area: ct-block;
  margin-bottom: 1em;
}
.action-block{
    /* display: grid; */
    /* width: 100%; */
    height: 100%;
    /* grid-template-columns: 75% 1fr; */
    grid-template-rows: 1fr;
    grid-template-areas:
        "ct-block calllink";
    align-items: center;
    /* grid-gap: 30px; */
    /* padding: 30px; */
    margin: 100px auto;
    overflow: hidden;
}

.content-text {
    font-size: 20px;
    font-weight: 300;
}
.calllink .solid{
    padding: 1em 1.5em;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2em;
    background: hsla(205, 19%, 44%, 1);
    color: #fff;
}

.calllink .liner{}

.solid {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border: none !important;
}

@media(max-width:640px){
    .action-block{
        display: block;
    }
}

.centertext {
    display: block;
    text-align: center;
}