html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.container .pcont {
  max-width: 960px;
}

.pricing-header {
  max-width: 700px;
}

.card-deck .card {
  min-width: 220px;
  overflow:hidden
}

    .card-deck .card .ribbon {
        width: 160px;
        height: 32px;
        font-size: 12px;
        text-align: center;
        color: #fff;
        font-weight: bold;
        box-shadow: 0px 2px 3px rgba(136, 136, 136, 0.25);
        background: #6f42c1 linear-gradient(180deg, #855eca, #6f42c1) repeat-x;
        transform: rotate(45deg);
        position: absolute;
        right: -42px;
        top: 20px;
        padding-top: 7px;
    }

@media (max-width: 767px) {
    .card-deck .card .ribbon {
        transform: none; /* Remove rotation */
        right: 0;
        top: 0;
        width: auto;
        padding: 5px 10px; /* Keep horizontal padding, adjust vertical if needed */
        border-radius: 0 0 0 10px; /* Rounded corner on bottom left */
        font-size: calc(10px + 0.5vw);
        line-height: 1.6; /* Adjust line height to give space above and below text */
        text-align: center; /* Center text horizontally */
        vertical-align: middle; /* Center text vertically */
        display: inline-block; /* This helps with vertical alignment */
        /* Other styling properties */
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
}


