.card img {
    transform: 0.2s linear;
    padding: 3px;
    margin-bottom: 5px;
    cursor: pointer;
}

.card img:hover {
    transform: scale(1.1);
}

.p-img-popup {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    height: 100%;
    width: 100%;
    z-index: 999;
}

.p-img-popup span {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    color: #fff;
}

.p-img-popup img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #fff;
    border-radius: 10px;
    object-fit: cover;
    width: 750px;
}

@media (max-width: 768px) {
    .p-img-popup img {
        width: 95%;
    }

    .card img {
        margin-bottom: 15px;
    }
}

.p-img-btn-right {
    position: absolute;
    right: 15px;
    top: 50%;
    font-size: 50px;
    color: #fff;
    z-index: 9;
    opacity: 0.5;
}
.p-img-btn-left {
    position: absolute;
    left: 15px;
    top: 50%;
    font-size: 50px;
    color: #fff;
    z-index: 9;
    opacity: 0.5;
}
