.pricing {
    font-weight: 700;
}

.pricing-page{
    margin-bottom: 0 !important;
}
.title span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f4b223;
    color: black;
}

.sub-title {
    font-size: 1.6rem;
    margin: 0;
}

.lines-img {
    width: 16ch;
    font-size: 2.5rem;
}

section.background-page {
    display: grid;
    height: 100%;
    background-image: url(/images/pricing-bg.svg);
    background-size: cover;
    background-position: inherit;
    background-repeat: no-repeat;
    padding-bottom: 2rem;
}

.card-wrapper {
    display: flex;
    justify-content: center;
    height: 28rem;
    align-items: center;
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
}

.card-wrapper .card {
    width: 14.5rem;
    min-height: 21rem;
    margin: 0 1rem;
    padding: 1rem 1.8rem;
    border-radius: 0.5rem;
    box-shadow: 10px 15px 1px 1px #6fcf97, -2px -5px 1px 1px #6fcf97;
}

.card-wrapper .card:nth-child(2) {
    align-self: flex-start;
    box-shadow: 10px 15px 1px 1px #31006f, -2px -5px 1px 1px #31006f;
}

.card-wrapper .card:nth-child(3) {
    box-shadow: 10px 15px 1px 1px #9b51e0, -2px -5px 1px 1px #9b51e0;
}

.card-wrapper .card img {
    width: 2.7rem;
    height: auto;
    margin: 0 auto;
    padding: 0.5rem 0;
    text-align: center;
    object-fit: contain;
}

.card-wrapper .card .card-title {
    font-size: 1.1rem;
    font-weight: bolder;
}

.card-wrapper .card .card-pricing {
    font-size: 0.7rem;
}

.card-wrapper .card .card-description {
    font-size: 9px;
    line-height: 1.7;
}

.card-wrapper .card .btn-secondary {
    width: fit-content;
    color: white;
    margin: 1rem auto 0.5rem;
}

.pricing-footer {
    display: flex;
    width: 100%;
    height: 385px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin-bottom: -8rem;
    background-image: url(/images/pricing-footer.svg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-color: #f5f6f8;
    z-index: 1;
    margin-top: -7%;
}

.desc {
    font-size: 10px;
    line-height: 2;
}

.first-desc {
    width: 90ch;
}

.second-desc {
    width: calc(13rem * 3);
    padding-bottom: 4rem;
}

.pricing-footer p {
    font-size: 1.6rem;
    color: white;
}

.pricing-footer .btn {
    color: white;
}
footer{
    background-size: cover !important;
}
.card-wrapper-mobile{
    display: none;
}
/* Responsive Design */
@media screen and (max-width: 985px) {
    .first-desc{
        width: auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }
    .second-desc{
        width: auto;
        padding: 2rem;
    }
    .lines-img{
        width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
    }
    .card-wrapper-mobile{
        display: block;
        margin-top: 20%;
        background-color: #f5f6f8;
    }
    .card-mobile{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background-color: white;
        padding: 1rem;
        margin-bottom: 3rem;
        border-radius: .25rem;
    }
    .card-mobile-header{
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
    }
    .card-mobile-title-price{
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
    }
    .card-mobile-header-start{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }
    .card-mobile-header-start img{
        width: 2rem;
        height: auto;
        padding: 0.5rem 0;
        text-align: center;
        object-fit: contain;
    }
    .card-mobile .btn-secondary {
        width: fit-content;
        color: white;
        height: fit-content;
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
        font-weight: 400;
    }
    .card-description{
        text-align: start;
    }
    .card-wrapper-mobile .card-mobile:nth-child(1) {
        box-shadow: 5px 5px 1px 1px #6fcf97, -5px -5px 1px 1px #6fcf97;
    }
    .card-wrapper-mobile .card-mobile:nth-child(2) {
        box-shadow: 5px 5px 1px 1px #31006f, -5px -5px 1px 1px #31006f;
    }
    .card-wrapper-mobile .card-mobile:nth-child(3) {
        box-shadow: 5px 5px 1px 1px #9b51e0, -5px -5px 1px 1px #9b51e0;
    }
    section.background-page{
        background-size: contain;
    }
    .pricing-footer{
        background-color: white;
        margin-bottom: -5rem;
    }
    .main-title span{
        font-size: 1.6rem;
    }
    .pricing-page .main-title{
        padding-right: 1rem;
        padding-left: 1rem;
    }
}
