.about-section{
    padding:0px 0px 70px 0px;
}

.about-img{
    overflow:hidden;
    border-radius:20px;
}

.about-img img{
    width:100%;
    border-radius:20px;
    transition:.5s;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-img:hover img{
    transform:scale(1.06);
}
    
.experience-box{
    position:absolute;
    right:20px;
    bottom:20px;
    background:#3ac41e;
    color:#fff;
    width:120px;
    height:120px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    text-align:center;
    box-shadow:0 15px 30px rgba(0,0,0,.3);
}

.experience-box h2{
    font-size:29px;
    margin:-6px;
    font-weight:700;
}

.experience-box span{
    font-size:12px;
    line-height:20px;
}

.about-tag{
    display:inline-block;
    background:#3ac41e;
    color:#fff;
    padding:8px 22px;
    border-radius:30px;
    font-weight:400;
    font-size:14px;
}

.about-title{
    font-size:33px;
    font-weight:600;
    color:#1b1b1b;
    line-height:55px;
}

.about-title span{
    color:#3ac41e;
}

.about-text{
    color:#666;
    font-size:16px;
    line-height:30px;
    text-align:justify;
}

.feature-box{
    display:flex;
    align-items:center;
    background:#fff;
    padding:18px;
    border-radius:12px;
    margin-bottom:20px;
    box-shadow:0 8px 25px rgb(174 217 107 / 66%);
    transition:.4s;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.feature-box i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#3ac41e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-right:15px;
}

.feature-box h5{
    margin-bottom:5px;
    font-size:15px;
    font-weight:600;
}

.feature-box p{
    margin:0;
    color:#777;
    font-size:14px;
}

.about-btn{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:14px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.about-btn:hover{
    background:#d4af37;
    color:#fff;
}

@media(max-width:991px){

.about-title{
    font-size:30px;
    line-height:40px;
}

.experience-box{
    width:110px;
    height:110px;
}

.experience-box h2{
    font-size:28px;
}

}

.property-service{
    margin-top:-120px;
    position:relative;
    z-index:99;
}

.service-card{
    background:#fff;
    padding:40px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    border:1px solid #eee;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(135deg, #3ed933, #27910d);
    transform:scaleX(0);
    transition:.4s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.service-icon{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg, #3ed933, #27910d);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    margin-bottom:25px;
    transition:.4s;
}

.service-card:hover .service-icon{
    background:linear-gradient(135deg,#f4b400,#d89b00);
    transform:rotateY(180deg);
}

.service-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.service-card p{
    color:#666;
    line-height:28px;
    margin-bottom:25px;
}

.service-card a{
    color:#3ac41e;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.service-card:hover a{
    color:#d89b00;
}

.service-card a i{
    margin-left:6px;
    transition:.3s;
}

.service-card:hover a i{
    transform:translateX(8px);
}