.descriptionService {
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
}

.descriptionService .img {
    width: 100%;
    height: 600px;
}

.descriptionService .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}






#leH2 {
    font-size: 32px;
    font-weight: 700;
    color: rgb(46, 49, 53);
    text-align: center;
    padding-top: 45px;
    margin-bottom: 25px;
}

#leH2:before {
    margin: 0px 15px 10px 0px;
    content: "";
    width: 50px;
    height: 2px;
    background: #3e7035;
    display: inline-block;
}

#leH2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: #3e7035;
    display: inline-block;
    margin: 0px 0px 10px 15px;
}








#bestServices {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
}

#bestServices .service {
    position: relative;
    width: 270px;
    height: 170px;
    overflow: hidden;
}

#bestServices .service a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#bestServices .image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

#bestServices .service h6 {
    background: #ffffffbf;
    width: 80%;
    color: #525151;
    height: 60%;
    position: absolute;
    top: 20%;
    text-align: center;
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bestServices .service:hover .image {
    transform: scale(1.2);
}


/* Le "view all industries. */
#bestServices #all h6 {
    background: #3e7035d4;
    width: 100%;
    color: #fff;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-transform: uppercase;
}

#bestServices #all:hover h6 {
    background: #3e7035c3;
}

#bestServices #all h6 span {
    border: 1px solid #ffffff7d;
    padding: 18% 25%;
    transition: all .3s ease-in-out;
}

#bestServices #all:hover h6 span {
    border: 1px solid #ffffff77;
    padding: 15% 22%;
    transition: all .3s ease-in-out;
}


@media (max-width:575.5px) {

    #divGetEstimate a {
        width: 100%;
        display: block;
        text-align: center;
    }
}











/* STYLES btn Get a Free Estimate */
@media screen {





    .button {
        position: relative;
        transition: all 0.3s ease-in-out;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
        padding-block: 0.5rem;
        padding-inline: 1.25rem;
        background-color: #3e7035;
        border-radius: 9999px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffff;
        gap: 10px;
        font-weight: bold;
        border: 3px solid #ffffff4d;
        outline: none;
        overflow: hidden;
        font-size: 18px;
        cursor: pointer;
    }

    .icon {
        width: 24px;
        height: 24px;
        transition: all 0.3s ease-in-out;
    }

    .button:hover {
        transform: scale(1.05);
        border-color: #fff9;
    }

    .button:hover .icon {
        transform: translate(4px);
    }

    .button:hover::before {
        animation: shine 1.5s ease-out infinite;
    }

    .button::before {
        content: "";
        position: absolute;
        width: 100px;
        height: 100%;
        background-image: linear-gradient(120deg,
                rgba(255, 255, 255, 0) 30%,
                rgba(255, 255, 255, 0.8),
                rgba(255, 255, 255, 0) 70%);
        top: 0;
        left: -100px;
        opacity: 0.6;
    }

    @keyframes shine {
        0% {
            left: -100px;
        }

        60% {
            left: 100%;
        }

        to {
            left: 100%;
        }
    }
}