body {
    background-color:#1c1c1c;
    color:#fff;
}
img {
    max-width:100%;
}
.header-brand svg {
    width:100px;
    fill:#fff;
}
.footer-brand svg {
    width:100px;
    fill:#fff;
}
.price-from {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: .5;
}
.price {
    font-size: 2rem;
    font-weight: 600;
}
.btn-block {
    display: block;
}
.btn-buy {
    box-shadow: 0 0 18px #198754;
    border-radius: 99px;
    background: #0bbb6a;
    color:#fff;
    font-weight:600;
    transition:.3s;
    animation: scaling 2s ease-in-out infinite;
}
.btn-buy:hover {
    box-shadow: 0 0 18px #198754;
    border-radius: 99px;
    background: #0bbb6a;
    color:#fff;
    font-weight:600;            
}
@keyframes scaling {
    0% {transform:scale(1)}
    50% {transform:scale(1.05)}
    100% {transform:scale(1)}
}
.benefits-item svg {
    width: 130px;
    margin: auto;
    display: block;
    margin-bottom: 10px;
    fill: #fff;
}
.product-item {
    background: #080808;
    padding: 15px;
    border-radius: 15px;
}