.offerpagebg{
    max-height: 1600px;
    color: white;
    position: relative;
}
.titlecontainer{
    width: 90vw;
    margin: auto;
}
.pagetitlenew{
    color: #e4a011;
    font-size: 60px;
}

.offerscontainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 4vw;
    width: 90%;
    margin: 0 auto;
    position: relative; /* important */
}

.offerdescription{
    color: black;
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    line-height: clamp(1.4, 2vw, 1.6);
    text-align: center;
}

.offerscontainer img{
    width: 100%;
    max-width: 100%;
}

.offer1 img, .offer2 img, .offer3 img{
    width: 100%;
    max-width: 260px;
    height: 260px;       /* same height for all */
    object-fit: contain; /* keeps proportions */
    display: block;
    margin: 0 auto;
}

.offer1, .offer2, .offer3{
    max-width: 350px;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media screen and (min-width: 1650px){
    .offer1, .offer2, .offer3{
     flex: 1 1 100px; /* grow | shrink | base width */
    max-width: 500px;
}

.offer1 img, .offer2 img, .offer3 img{
    max-width: 360px;
    height: 360px;
}

   .offerdescription{
    font-size: clamp(1.1rem, 1.4vw, 1.8rem);
}
}

@media (max-width: 900px){
    .breakremove{
        display:none;
    }

    .offerdescription{
        font-size: clamp(0.8rem, 1vw, 1.2rem);
        line-height: clamp(1.4, 2vw, 1.6);
    }

     .offerscontainer{
        flex-direction: column;
        gap: 10vw;
    }

        .offer1 img, .offer2 img, .offer3 img{
        width: 100%;
        justify-content: center;
        margin: 0 auto;
    }

    .offer1, .offer2, .offer3{
        justify-content: center;
        margin: 0 auto;
    }
}
@media (max-width: 450px){



    .offerdescription{
        font-size: clamp(1rem, 1vw, 1.2rem);
    }

    .pagetitlenew{
        text-align: center;
    }
}