.package_area{
    padding: 50px 0;
    background-color: #f9f9f9;
    .title{
        text-align: center;
        h2{
            font-size: 35px;
            font-weight: 600;  
            line-height: 40px;
        }
        p{
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 35px;
        }
    }
    .package_mobile{
        margin-bottom: 190px;
    }
    .package_img{
        width: 100%;
        height: 330px;
        position: relative;
        z-index: 1;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }
    }
    .package_offer{
        width: 100%;
        display: flex;
        justify-content: center;
        .package_bg{
            background-color: #fff;
            box-shadow:  0 1px 1px 1px rgba(0,0,0,.129);
            padding: 10px;
            position: absolute;
            margin-top: -100px;
            border-radius: 10px;
            z-index: 2;
            .price{
                background-color: #fd9904;
                display: inline-block;
                margin-bottom: 0;
                padding: 5px 20px;
                border-radius: 5px;
                color: #fff;  
                margin: 0 auto;
                margin-top: -30px;
                position: absolute;
            }
            .package_content{
                h2{
                    font-size: 22px;
                    font-weight: 500;
                    line-height: 35px;
                    margin-top: 30px;
                }
                ul{
                    margin-bottom: 15px;
                    li{
                        margin-left: 0;
                        font-size: 16px;
                        line-height: 26px;
                        font-weight: 400;
                        i{
                            font-size: 18px;
                            color: #168A03;
                            margin-right: 7px;
                        }
                    }
                }
            }
            .package_btn{
                background-color: #168a03;
                display: block;
                color: #fff;
                text-align: center;
                padding: 10px 0;
                border-radius: 10px;
                margin: 10px 0;
            }
        }
    }
    
}