
.service-item{
    transition: var(--transition);
    width: 33.33%;
    padding: 0px 15px;
    margin-bottom: 40px;
}
.service-item .image .btn{
    display: none;
    transition: var(--transition);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--blue);
    width: max-content;
    font-size: 16px;
    padding: 13px 22px;
    overflow: hidden;
    margin: 0;
    border-radius: 100px;
    transition: var(--transition);
    line-height: normal;
    font-weight: 600;
    letter-spacing: 0.1px;
    color: var(--white) !important;
    align-items: center;
    text-transform: uppercase;
    text-decoration: none !important;
    z-index: 1;
    border: 0px;
}
.service-item .image::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    opacity: 0;
}
.service-item:hover .image::before{
    opacity: 1;
}
.service-item .image .btn::before{
    display: none;
}
.service-item .image .btn:hover{
    background: var(--orange);
    color: var(--white) !important;
}
.service-item .image{
    border-radius: 15px 15px 0px 0px;
    overflow: hidden;
    background: #F7F7F7;
    overflow: hidden;
    padding: 20px;
    position: relative;
    height: 350px;
}
.service-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}
.service-item .title{
    background: rgb(22 182 215 / 30%);
    padding: 20px 15px;
    border-radius: 0px 0px 15px 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-item .title h5{
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 16.5px;
    transition: ALL 0.3S ease;
}

.service-item:hover .image img{
    transform: scale(1.1);
}
.service-item:hover .image .btn{
    display: flex;
}
.our-services .left-wrap{
    padding-right: 20px;
}
.our-services .row{
    margin-bottom: -40px;
}