/* -- Promotions -- */

.pro-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px auto;
    padding: 0;
    list-style: none;
}
.pro-item {
    position: relative;
    max-width: 600px;
    width: 100%;
    text-align: center;
    border: 4px solid var(--accent-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    background-color: #fff;
    padding: 50px 30px;
}
.pro-item .r_logo {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 70px;
    height: auto;
}
/*.pro-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
    background-color: #151515;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 5px;
}*/
.pro-item h2 {
    font-weight: 700;
}
.pro-item .h2-offer {
    background: linear-gradient(180deg, transparent 35%, var(--accent-color) 35%, var(--accent-color) 65%, transparent 65%);
}
.pro-item .h2-sm {
    display: block;
    line-height: 1.25em;
    font-size: .6em;
    margin-top: 8px;
    font-weight: 300;
}
.pro-note {
    margin: 25px auto 20px;
    color: #888;
    font-style: italic;
    font-size: .85rem;
}