.discount-offer{
    background: linear-gradient(90deg, #DD5C0C 0%, #CE311D 25.63%, #CD331F 52.15%, #DD5C0C 100%);
    padding: 6px 0;   
    position: absolute;
    width: 100%;
}
.discount-wrapper{
    max-width: 652px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.discount-wrapper img{
    width: 271px;
    height: 41px;
    margin-right: 8px;
}
.discount-wrapper p{
    font-weight: 450;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: white;
    margin-right: 10px;
}
.discount-wrapper span{
    font-weight: 450;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    color: white;
    cursor: pointer;
}
.discount-wrapper span:hover{
    text-decoration: none;
}
/* @media (max-width: 767px) {
    .discount-offer{
        margin-top: 65px; 
    }
} */
@media (max-width: 575px) {
    .discount-offer {
        background: linear-gradient(90deg, #DD5C0C 0%, #CE311D 22.63%, #CD331F 77.15%, #DD5C0C 100%);
        padding: 7px 0 10px;
    }
    .discount-wrapper {
        flex-wrap: wrap;
        row-gap: 6px;
    }
    .discount-wrapper img {
        width: 200px;
        height: 30px;
        margin-right: 8px;
    }
    .discount-wrapper p, .discount-wrapper span {
        font-size: 14px;
    }
}