
.w_block {

  background-color: #ebf3ff;
  padding: 50px 32px;
  max-width: 1200px;
  margin: 50px auto;


  &-titles {
    position: relative;
    width: max-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  &-subtitle {
    color: rgb(241, 96, 70);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
  }

  &-title {
    position: relative;
    font-size: 40px;
    font-weight: 600;
    line-height: 45px;
    margin: 0;
    background: linear-gradient(to right, #14102C 0%, #14102C 30%, #E86E2C 81%, #14102C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #14102C;
  }

  &-btns {
    width: max-content;
    margin: 48px auto 68px;
    display: flex;
    gap: 25px;
    @media screen and (max-width: 768px) {
      flex-direction: column;
    }

    [class^="w_btn"] {
      display: inline-block;
      width: 220px;
      height: 50px;
      margin: 0 15px;
      line-height: 50px;
      font-size: 20px;
      text-decoration: none;
      color: #fff;
      border-width: 1px;
      border-style: solid;
      text-align: center;
      border-radius: 8px;
      text-transform: uppercase;
      transition: 0.5s;
      background-size: 200% auto;

      &:hover {
        background-position: right center;
      }
    }

    .w_btn {

      &-pro {
        background-image: linear-gradient(to right, #FFD500 0%, #E86E2C 51%, #FFD500 100%);
      }

      &-demo {
        background-image: linear-gradient(to right, #005BBF 0%, #800080 51%, #005BBF 100%);
      }

    }

  }

}


h4.wowp-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.125;
  margin: 0 0 48px;
  padding: 0;
  color: var(--wowp-dark);
}

.w_card {
  position: relative;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .02);
  padding: 15px;
  text-decoration: none;
  color: #363636;

  &-media {
    position: absolute;
    top: -6px;
    left: -12px;
    background-color: #fdf2ed;
    width: 56px;
    height: 56px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    color: orange;
    font-size: 32px;
    justify-content: center;
    margin: 0;
  }

  &-content {
    display: flex;
    gap: 28px;
    flex-direction: column;
  }

  &-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 0 44px;
  }

  &-description {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    margin: 0;

    &.is-open {
      overflow: visible;
      display: block;
      -webkit-line-clamp: unset;
    }
  }


}


