    .offer_bg{    
    background-color: #fff;
    box-shadow: 0 1px 1px 1px rgba(0,0,0,.129);
    padding: 20px 15px;
    border-radius: 10px;
    margin-bottom: 60px;
    margin-top: -180px;
    position: relative;
    z-index: 2;
    .offer_img{
        width: 100%;
        height: auto;
        border-radius: 10px;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .offer_title{
        text-align: center;
        h2{
            font-size: 30px;
            font-weight: 600;
            color: #0d0d0d;  
            font-family: 'Poppins', sans-serif;
            margin: 20px 0;
        }
    }
    .offer_content{
        text-align: justify;
        p{
            font-size: 15px;
            margin: 0 15px;
        }
    }
}
.offer_area{
    background: #F9F9F9;
    padding-bottom: 50px;
    .agency_img{
        width: 100%;
        height: auto;
        position: relative;
        z-index: 1;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        &::after{
            position: absolute;
            content: '';
            top: -15px;
            left: -15px;
            height: 100%;
            width: 100%;
            border: 1px solid $text;
            z-index: -1;
        }
    }
    .agency_content{
        margin-left: 30px;
        h2{
            font-size: 40px;
            line-height: 50px;
            font-weight: 600;
        }
        p{
            font-size: 15px;
            margin-top: 15px;
        }
        ul{
            li{
                font-size: 18px;
                font-weight: 500;
            }
        }
    }
}