.section-card-price {
    position: relative;
    width: 100%;
}

.section-card-price .c-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 96px 20px 0;
}

.section-card-price .c-container h2 {
    font-family: "PP Editorial New";
    color: #222241;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 8px;
    text-align: center;
}

.section-card-price .c-container h2 span {
    font-style: italic;
}

.section-card-price .c-container p {
    font-family: "Neue Haas Grotesk Display Pro";
    color: #000;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    text-align: center;
    text-transform: uppercase;
}

.section-card-price .c-container .content-card-price {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.section-card-price .c-container .content-card-price .card-price {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: none;
    background-position: center;
    border: 1px solid #000;
    max-width: 368px;
    width: 100%;
    min-height: 235px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.section-card-price .c-container .content-card-price .card-price:hover {
    color: #fff;
    transition: all 0.3s ease;
    scale: 1.02;
}

.section-card-price .c-container .content-card-price .card-price h4 {
    font-family: "Neue Haas Grotesk Display Pro";
    font-size: 24px;
    margin: 0 0 10px;
    color: #222241;
    transition: color 0.3s ease;
}

.section-card-price .c-container .content-card-price .card-price:hover h4 {
    color: #fff;
    transition: color 0.3s ease;
}

.section-card-price .c-container .content-card-price .card-price span {
    font-family: "Neue Haas Grotesk Display Pro";
    font-size: 18px;
    margin: 0;
    color: #222241;
    opacity: 0.6;
    font-style: italic;
    transition: color 0.3s ease;
}

.section-card-price .c-container .content-card-price .card-price:hover span {
    color: #fff;
    transition: color 0.3s ease;
}

.section-card-price .c-container .content-card-price .card-price:hover .text-description {
    position: relative;
    top: -30px;
    transition: all 0.3s ease;
}

.section-card-price .c-container .content-card-price .card-price p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-card-price .c-container .content-card-price .card-price p span {
    font-size: 54px;
    margin: 0;
    text-align: left;
    margin-top: auto;
    color: #222241;
    transition: color 0.3s ease;
    font-family: "PP Editorial New";
    opacity: 1;
}

.section-card-price .c-container .content-card-price .card-price .card-actions {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 25px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.section-card-price .c-container .content-card-price .card-price:hover .card-actions {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.section-card-price .c-container .content-card-price .card-price .card-actions button {
    text-decoration: none;
    border-radius: 75px;
    font-size: 16px;
    max-width: 266px;
    margin: 0 auto;
    font-family: "Neue Haas Grotesk Display Pro";
    font-style: italic;
    padding: 10px;
    width: 100%;
    line-height: normal;
    max-height: 50px;
    background-color: #fff;
    color: #000;
    border: solid 1px #000;
    display: flex;
    align-items: center;
    justify-content: space-around;
    line-height: normal;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.section-card-price .c-container .content-card-price .card-price .card-actions button:hover {
    background-color: #000;
    color: #fff;
    border: solid 1px #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.section-card-price .c-container .content-card-price .card-price:hover p {
    color: #fff;
    transition: color 0.3s ease;
}

@media screen and (max-width: 768px) {
    .section-card-price .c-container {
        padding: 40px 15px 25px;
    }

    .section-card-price .c-container .content-card-price .card-price {
        min-height: auto;
    }

    .section-card-price .c-container .content-card-price .card-price span {
        display: none;
    }

    .section-card-price .c-container .content-card-price .card-price p span {
        font-size: 40px;
        display: block;
    }

    .section-card-price .c-container .content-card-price .card-price .card-actions {
        opacity: 1;
        visibility: visible;
    }

    .section-card-price .c-container .content-card-price .card-price:hover {
        background-image: none !important;
    }

    .section-card-price .c-container .content-card-price .card-price:hover h4 {
        color: #000;
    }

    .section-card-price .c-container .content-card-price .card-price:hover p {
        color: #000;
        transition: color 0.3s ease;
    }

    .section-card-price .c-container .content-card-price .card-price:hover p span {
        color: #000;
        transition: color 0.3s ease;
    }
}