.section-why-choose .col-md-6 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.section-why-choose .why-choose-img-wrapper {
    position: relative;
}

.section-why-choose .why-choose-img-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: gray;
    opacity: 0;
    transition: opacity .6s;
}

.section-why-choose .why-choose-img-wrapper:hover:before {
    opacity: 1;
}

.section-why-choose .why-choose-without-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-why-choose .mobile-service-button:not( :last-of-type ) {
    margin-bottom: 0.5rem;
}

@media ( min-width: 768.98px ) {

    .section-why-choose .why-choose-img-wrapper:before {
        top: 1.5rem;
        bottom: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
    }
}