.head__list li span {
    font-weight: 300;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 30px;
}
.products .product__container.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    align-items: flex-start;
    margin-top: 80px;
}
.products .product__container .product {
    border: 1px solid rgba(215, 234, 246, 0.5);
    padding: 10px;
    border-radius: 2px;
}
.products img {
    width: 100%;
}
.products .article {
    font-weight: bold;
    text-align: center;
    color: #192134;
}
.product .name {
    text-align: center;
    margin-bottom: 10px;
    color: #3a7bd5;
    font-size: 15px;
    height: 30px;
    font-weight: 500;
    line-height: 17px;
}
.products table tbody,
.products table tfoot {
    border-top: 1px dashed lightgray;
    color: grey;
    font-size: 13px;
}
.products table tr th {
    padding: 5px 5px 0 0;
}
.products table tr td{
    padding: 5px 0 0;
    width: 90px;
    color: #192134;
}
.products table tr td .price {
    color: #3a7bd5;
    font-weight: bold;
    font-size: 20px;
}
.products table tr td .currency {
    color: grey;
}
.products table tr:last-of-type th,
.products table tr:last-of-type td {
    padding-bottom: 5px;
}
.products table tfoot th {
    text-transform: uppercase;
}
.products .btn {
    width: 100%;
    background-color: #3a7bd5;
    color: white;
}
@media only screen and (max-width: 1140px) {
    .col-3 {
        flex: 0 0 33%;
        max-width: 33%;
    }
}
@media only screen and (max-width: 1024px) {
    .col-3 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 10px;
        padding-left: 10px;
        padding-bottom: 20px;
    }
}
@media only screen and (max-width: 600px) {
    .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}