.product-card {
    background-color: var(--main-background);
    width: 640px;
    height: 640px;
    padding: 50px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card.center {
    align-items: center;
    justify-content: center;
}

.product-card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-card-title {
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--second-white);
}

.product-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 60;
    width: 100%;
    height: 90px;
    border-radius: 20px;
    border: 4px solid var(--main-white);
    background-color: transparent;
    text-decoration: none;
    transition: 0.3s;
}

.product-card-btn h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--main-white);
}

.product-card-btn-square {
    display: none;
    position: absolute;
    left: 60px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--main-white);
}

.product-card-btn:hover {
    background-color: var(--main-white);
}

.product-card-btn:hover h2 {
    color: var(--main-background);
}


@media (max-width: 1300px) {
    #products {
        height: auto;
        padding: 120px 0;
    }

    #cards {
        flex-direction: column;
    }
}

@media (max-width: 980px) {
    #products {
        padding: 40px 10px;
    }

    .product-card {
        width: 100%;
        height: 420px;
        padding: 30px;
    }
}

@media (max-width: 380px) {
    .product-card-content .description.white {
        font-size: 17.5px;
    }
}