.pricing-model {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 50px;
    margin-bottom: 150px;
}

@media (max-width: 900px) {
  .pricing-model {
    flex-direction: column;
    align-items: center;
  }
}

.basic {
    height: 360px;
    width: 250px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.get-started {
    border: solid;
    border-width: 1px;
    font-size: 16px;
    /* padding: 10px 80px; */
    width: 100%;
    height: 40px;
    border-radius: 5px;
    margin-top: 30px;
    font-weight: bold;
    background-color: white;
    cursor: pointer;
    transition: opacity 0.15s;
}

.standard .get-started {
    background-color: rgb(125, 211, 252);
    color: black;
}

.get-started:hover {
    opacity: 0.8;
}

.pricing-model-feature p {
    font-size: 17px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}


.standard {
    background-color: rgb(26, 26, 46);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    /* padding-top: 30px; */
    padding-left: 30px;
    padding-right: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    height: 480px;
    width: 250px;
    position: relative;
}

.discount {
    position: absolute;
    color: white;
    top: 105px;
    left: 140px;
    background-color: red;
    padding: 2px 4px;
    font-size: 14px;
    border-radius: 10px;
    transform: rotate(8deg);
    font-weight: bold;
}



.standard .pricing-model-feature p {
    color: white;
    border-bottom: 1px solid rgba(137, 137, 137, 0.726);
}


.premium {
    height: 430px;
    width: 250px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.basic,
.standard,
.premium {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.basic:hover,
.standard:hover,
.premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

