.where-we-install .section-title{
    margin-bottom: 50px;
}
.where-we-install-col{
    width: 20%;
    padding: 0px 15px;
}
.where-we-install-item .image{
    position: relative;
}
.install-place{
    position: absolute;
    top: 25px;
    background: #fff;
    border-radius: 0 140px 140px 0;
    padding: 4px 16px;
    opacity: 0;
    z-index: 2;
    transform: translateX(-100%);
    transition: var(--transition);
    font-weight: 500;
    color: var(--black);
}
.where-we-install{
    padding: 50px 0px;
    background: #F7F7F7;
}
.where-we-install-item .image{
    position: relative;
    overflow: hidden;
    height: 270px;
}
.where-we-install-item .image::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    display: none;
    z-index: 1;
}
.where-we-install-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.where-we-install-item:hover img{
    transform: scale(1.1);
}
.where-we-install-item:hover .install-place{
    opacity: 1;
    transform: translateX(0%);
}
.where-we-install-item:hover .image::before{
    display: block;
}