.product-card {
    display: block;
    padding: 50px 45px 73px 84px;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-card:hover {
    box-shadow: 0 0 15px 0 #CCC;
}

.product-row {
    display: flex;
}

.product-row .col {
    width: 50%;
}

.col.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-title, .product-text, .product-bullets, .product-image-container {
    margin-bottom: 2rem;
}

.product-bullets {
    list-style-type: initial;
    list-style-position: inside;
}

.button-quotation {
    margin-left: 17px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
}

.product-calculator-container {
    text-align: center;
}

.a-fs {
    align-self: flex-start;
}

@media (max-width: 768px) {

    .row.product-row {
        flex-direction: column-reverse;
    }

    .row.product-row.mb-unreversed {
        flex-direction: column;
        gap: 20px;
    }

    .product-specs {
        display: none;
    }

    .button-quotation {
        display: none;
    }

    .button-brochure {
        text-align: center;
    }

    .card.product-card .col {
        width: 100%;
    }
}
