.gift-vouchers-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    padding-top:var(--space-between-sections) ;
    padding-bottom:var(--space-between-sections) ;
    background-color: #f8f5f0;
}

.gift-vouchers__list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: row;
    gap: 16px;
    width: 80%;
    margin-top: 30px;
    margin-bottom: 60px;

}

.gift__card {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 21px;
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 100%;
}
.gift__card h3{
    font-family: var(--font-style-title);
}

.gift__card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 30px;
}

.gift__card .icon img {
    position: relative;
    top: 15px;
    width: 30px;
    height: 30px;
}

.gift__card .about__section-buttons {
    margin-top: auto;
    justify-content: space-between;
}

@media (max-width:992px) {
    .gift-vouchers__list {
        flex-wrap: wrap;
    }
}