#pricing {
    height: 100vh;
    background: #2C57DC;
    padding: 40px 120px;
}

.pricing__container {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 20px;
}
@media only screen and (max-width: 600px) {
    #pricing {
        height: auto;
        padding: 3.75rem 0.9375rem;
    }
    .pricing__container {
        grid-template-columns: auto;
    }
    .pricing-card {
        height: 50vh !important;
    }
}

.pricing-card {
    position: relative;
    height: 65vh;
    border-radius: 15px;
    background-color: #F8FBFF;
    color: #2C57DC;
    overflow: hidden;
    box-shadow: 0px 2px 6px 0px rgba(46, 46, 46, 0.5);
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 100% 60%;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 1;
}

#pricing-card--felt::before {
    background-image: url('../img/prices/felt.svg');
    top: 50%;
    background-size: cover;
    opacity: 10%;
}
#pricing-card--sewing::before {
    background-image: url('../img/prices/sewing_machine.svg');
}
#pricing-card--leafs::before {
    background-image: url('../img/prices/leafs.svg');
}
#pricing-card--textile::before {
    background-image: url('../img/prices/textile.png');
    background-size: cover;
    opacity: 10%;
    left: 60px;
    right: -60px;
}



.pricing-card__title {
    padding: 0;
    margin: 0;
    font-size: 24px;
    font-family: 'Evolventa';
}

.pricing-card__description {
    font-size: 14px;
}

.pricing-card__content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 85%;
}

.pricing__title {
    color: #F8FBFF;
}


.pricing-card__button {
    border-radius: 15px;
    width: 100%;
    text-align: center;
    margin: 5px 0;
    padding: 14px;
    font-size: 14px;
}
.pricing-card__button--free {
    border: 1px dashed #F8FBFF;
    color: #F8FBFF;
    background: #2C57DC;
}
.pricing-card__button--free:hover {
    background: #0D2F90;
    transition: all 0.3s ease;
}
.pricing-card__button--purchase {
    border: 1px solid #2C57DC;
    text-align: center;
}
.pricing-card__button--purchase:hover {
    background: #2C57DC;
    color: #F8FBFF;
    transition: all 0.3s ease;
}

.pricing-card__actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}