.price-cards {
    display: grid;
    grid-template-columns: repeat(4, 25%);
    justify-content: space-between;
}

.price-cards .price-card {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 15px 10px rgba(0, 0, 0, 0.05);
    margin: 0px 15px;
    padding: 15px;
    margin-top: 100px;
    display: grid;
    grid-template-columns: 100%;
    gap: 5px;
}

.price-cards.slick-slider .slick-track {
    padding-bottom: 20px !important;
}

.price-cards.slick-slider .slick-arrow {
    all: unset;
    position: absolute;
    top: calc(50% - 40px);
    z-index: 1;
    cursor: pointer;
    transition: 0.3s;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-cards.slick-slider .slick-arrow:hover {
    opacity: 0.8;
}

.price-cards.slick-slider .slick-arrow#prev {
    left: -20px;
}

.price-cards.slick-slider .slick-arrow#next {
    right: -20px;
}

.price-cards .price-card img {
    width: 100%;
    margin-top: -100px;
}

.price-cards .price-card h2 {
    padding: 0;
    margin: 0;
    color: #101010;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.price-cards .price-card h2 span {
    font-size: 15px;
    padding: 2px 9px;
    background: #EB0A1E;
    border-radius: 5px;
    color: #fff;
    font-weight: 100;
}

.price-cards .price-card h3 {
    padding: 0;
    margin: 0;
    color: #252525;
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.price-cards .price-card .price {
    color: #101010;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.price-cards .price-card .card-btn {
    all: unset;
    display: block;
    margin-top: 5px;
    color: #fff;
    text-align: center;
    padding: 7px;
    border-radius: 6px;
    background: #EB0A1E;
    box-shadow: 0px 4px 15px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: 0.3s;
}
.price-cards .price-card .card-btn:hover {
    opacity: 0.8;
}

div.card-modal {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100vh;
    z-index: 9999;
    padding: 50px;
}

div.card-modal .card-modal-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    position: relative;
}

div.card-modal .card-modal-container .table-content {
    overflow-y: auto;
    width: 100%;
    height: 100%;
}

div.card-modal .card-modal-container .card-modal-closer {
    all: unset;
    padding: 8px 15px;
    background: black;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 24px;
    cursor: pointer;
}


@media screen and (max-width:996px) {
    .price-cards {
        grid-template-columns: repeat(3, 33%);
    }

    .price-cards .price-card {
        margin: 0px 10px;
        margin-top: 110px;
    }
    
    .price-cards.slick-slider .slick-arrow#prev {
        left: 0px;
    }
    .price-cards.slick-slider .slick-arrow#next {
        right: 0px;
    }
}

@media screen and (max-width:640px) {
    .price-cards {
        grid-template-columns: repeat(2, 50%);
    }
    .price-cards .price-card {
        margin: 0px 5px;
        margin-top: 50px;
    }
    .price-cards .price-card img {
        margin-top: -50px;
    }

    .price-cards .price-card h2 {
        font-size: 18px;
    }

    .price-cards .price-card h2 span {
        font-size: 12px;
        padding: 1px 6px;
    }

    .price-cards .price-card h3 {
        font-size: 16px;
    }
    .price-cards .price-card .price {
        font-size: 17px;
    }

    .price-cards .price-card button {
        font-size: 16px;
    }


    div.card-modal {
        padding: 25px;
    }
    
    div.card-modal .card-modal-container {
        padding: 25px;
    }
    div.card-modal .card-modal-container .card-modal-closer {
        padding: 7px 10px;
        font-size: 20px;
    }
}