/* Import Google Font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

.gift-card {
    position: relative;
    background-size: cover;
    padding: 25px;
    border-radius: 28px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.gift-card-header,
.card-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-logo img {
    width: 48px;
    margin-right: 10px;
}

.card__title1 {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.card-chip {
    width: 60px;
}

.card__title2 {
    color: #fff;
    font-size: 10px;
    font-weight: 400;
}

h5.number {
    margin-top: 4px;
    font-size: 18px;
    letter-spacing: 1px;
}

h5.name {
    margin-top: 20px;
}

.gift-card .card-details {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

@media only screen and (max-width: 768px) {
    .gift-card {
        padding: 15px;
    }
}