.freedomSale {
    margin: 1.5rem auto;
    text-align: center;
}

.freedomTitle {
    background: linear-gradient(130.21deg, #F16C00 10.06%, #FFFFFF 52.76%, #20B55B 95.46%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font: 700 2.5rem "Inter", sans-serif;
    margin: 0 auto 0.5rem auto;
    text-align: center;
    /* display: block; */
    text-transform: capitalize;
}

.liveBtn {
    background: linear-gradient(113.08deg, #F16C00 4.19%, #FFFFFF 51.32%, #20B55B 98.46%);
    min-width: 65px;
    height: 28px;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    color: #000;
    font: 700 2.3rem "Inter", sans-serif;
    text-transform: uppercase;
    border-radius: 4.4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

}
.blinkingText {
    animation: blink 2.5s infinite;
}
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.2;
    }
}
.limitedOfferBtn {
    position: relative;
    background: #212121;
    border-radius: 60px;
    width: 143px;
    height: 22px;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.limitedOfferBtn img {
    width: 16px;
    height: 14px;
}

.limitedTxt {
    font: 500 1.2rem "inter", sans-serif;
    font-style: Italic;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    background: linear-gradient(304.55deg, #B48812 13.97%, #EDD8A1 28.63%, #C1992F 47.31%, #EACB79 71.03%, #AD8310 93.6%, #DDB444 113.3%, #916C06 128.54%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.limitedOfferBtn::before{
position: absolute;
content: "";
background: url("https://images.moneycontrol.com/images/2025/line-gradient.png") no-repeat;
width:127px;
height: 3px;
    left: -138px;
    top: 10px;
    display: block;
}
.limitedOfferBtn::after{
position: absolute;
content: "";
background: url("https://images.moneycontrol.com/images/2025/line-gradient.png") no-repeat;
width:127px;
height: 3px;
    right: -138px;
    top: 10px;
    display: block;
    rotate: 180deg;
}



@media all and (max-width:980px){
    .freedomSale {
    margin: 1.5rem auto 2.5rem;
    }
    .freedomTitle{
        font-size: 2rem;
    }
    .liveBtn{
        min-width: 52px;
        height: 23px;
        font-size: 1.8rem;
    }
    .limitedOfferBtn::before{
        width: 100px;
    height: 3px;
    left: -108px;
    }
    .limitedOfferBtn::after{
        width: 100px;
    height: 3px;
    right: -108px;
    }
    
}