@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap");



.pricycontainer {
    max-width: 100%;
    margin: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: #fff;
    width: 2000px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    gap: -35px;
    margin-bottom: 0px;
}


.pricing-container {
    display: flex;
    gap: 5px;
    background-color: #000;
    border: 20px solid #000;
    flex-wrap: wrap;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2f1c6a;
}

.pricing-plan {
    background-color: #fff;
    width: 230px;
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid rgba(44, 44, 221, 0.2);
    transition: transform 0.5s;
    position: relative;
}

.pricing-plan:hover {
    transform: scale(1.02) translateY(-5px);
}

.plan {
    min-height: 30px;
}

.plan-name {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #2f1c6a;
    margin-bottom: 0;
}

.plan-description {
    text-align: center;
    font-size: 14px;
    font-weight: 100;
    color: #2f1c6a;
    margin-top: 10px;
}

.price {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
}

.discount {
    background-color: #ebe4ff;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: bold;
    color: #4f25d1;
}

.monthly {
    font-size: 16px;
    text-transform: none;
    color: #2f1c6a;
    font-weight: 100;
    font-family: sans-serif;
    line-height: 1;
}

.monthly span {
    font-size: 20px;
    font-weight: 700;
}

.savings {
    font-size: 1.2rem;
    font-weight: 700;
    color: #673de6;
}

.add-to-cart {
    background-color: #1f1e20;
    padding: 15px;
    border: none;
    outline: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    width: 10%;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #1d1c1f;
}

/* features section */

.features h3 {
    color: #2f1c6a;
    font-size: 1.2rem;
    font-weight: 700;
}

.features div {
    margin-bottom: 10px;
}

.features div i {
    margin-right: 5px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffd000;
}

.features div span {
    font-size: 14px;
    font-weight: 700;
    color: #2f1c6a;
}

.features div .close {
    color: #ff3a85;
}
.features div .green {
    color: #00b48e;
}
.texty{
    color: #000;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
}
.most-popular .most-popular-text {
    background-color: #ffe8ef;
    padding: 10px;
    color: #fc5185;
    text-transform: uppercase;
    display: inline-block;
    width: 250px;
    border-radius: 2rem;
    text-align: center;
    font-weight: 700;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.most-popular {
    background-color: #fafbff;
    border: 1.8px solid #5025d1;
}

.most-popular .add-to-cart {
    background-color: #fc5184;
    transition: background-color 0.3s;
}

.most-popular .add-to-cart:hover {
    background-color: #d63063;
}

.most-popular .savings {
    color: #fc5184;
}

.most-popular .discount {
    background-color: #ffe8ef;
    color: #fc5184;
}

.textu{
    color: #fff;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bolder;
    font-size: 60px;
}


.standard-btn {
    text-decoration:none;
    border: 2px solid #00ACEC;
    padding:10px 20px 10px 20px;
    border-radius:2px;
    color:#00ACEC;
    margin:5px;
  }
  .standard-btn-coloured {
    text-decoration:none;
    background:#011820;
    font-family: sans-serif;
    text-transform: none;
    border: 2px solid #011820;
    padding:10px 20px 10px 20px;
    border-radius:8px;
    color:#FFFFFF;
    margin:5px;
  }
  .standard-btn:hover {
    color:#FFFFFF;
    background-color:#00acec;
  }
  .standard-btn-coloured:hover {
    color:#FFFFFF;
    background-color:#02161d;
  }
  
  .btn-lg {
    padding: 15px 40px 15px 40px;
  }
  