    .offer_modal{
        position: fixed; 
        top: 0; 
        left: 0; 
        width: 100%;
        height: 100%; 
        background: rgba(0,0,0,0.7);
        display: flex; 
        justify-content: center; 
        align-items: center;
        z-index: 9999;
    }
    
    .offer_modal_left{
        position: relative;
        display: flex;
        align-items: center;
        
    }
    
    .offer_modal_left img{
        height: 150%;
        /* width: 100%; */
        position: absolute;
        left: 0px;
    }
    
    .offer_modal_right{
        padding-left: 10px;
    }
    
    .offer_modal_inner{
        position: relative;
        background: #1e35526d; 
        backdrop-filter: blur(20px);
        padding: 25px; 
        max-width: 60%;
        border-radius: 12px; 
        /*text-align: center;*/
    }
    
    .offer_modal_right h2, h3, h4{
        color: #f4f4f4;
    }
    .offer_modal_right p{
        color: #f4f4f4c3;
        margin-top: 10px
    }
    
    .offer_modal_close{
        position: absolute;
        background:none;
        border:none; 
        font-size:50px; 
        color: white; 
        cursor:pointer;
        right: 40px;
        top: 0px;
        background: red;
        padding: 10px;
        background-color: #ff4d00;
    }


    @media (max-width: 1400px){
        .offer_modal_left img{
            height: 125%;
        }
    }

    @media (max-width: 1100px){

        .offer_modal_inner{
            max-width: 80%;
        }
    }

    @media (max-width: 992px){

        .offer_modal_left{
            height: 200px;
        }
        .offer_modal_left img{
            height: 150%;
            top: -50%
        }
    }

    @media (max-width: 500px){
        .offer_modal_inner{
            max-width: 95%;
        }  
        
        .offer_modal_left{
            height: 100px;
        }

        .offer_modal_inner{
            padding: 15px;
        }
        
        .offer_modal_close{
        position: absolute;
        background:none;
        border:none; 
        font-size:30px; 
        color: white; 
        cursor:pointer;
        right: 40px;
        top: 0px;
        background: red;
        padding: 10px;
        background-color: #ff4d00;
    }
        
    }