body:not(.home) .container-margin-120 {
	margin-top: 0;
}
#service-list-block .serice-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* margin-bottom: 30px; */
}
.service-item__image--wrapper {
    max-width: 360px;
    max-height: 360px;
    width: 100%;
    height: 100vh;
    margin-bottom: 15px;
    overflow: hidden;
}
.service-list-item .service__image {    
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
    transform: scale(1.5) translateX(50px) translateY(50px);
}
.service__bottom {
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.service__name {
    font-weight: 700;
    font-size: var(--font-size-16-20);
    line-height: 125%;
    color: var(--black);
    transition: all .3s;
    flex: 1;
}
.service__button {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 1px solid var(--stoke);
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
}
.service-list-item:hover .service__image {
    transform: scale(1);
}
.service-list-item:hover .service__name {
    color: var(--primary);
}
.service-list-item:hover .service__button {
    opacity: 1;
    visibility: visible;
}
#service-block .btn {
    max-width: 100%;
}
@media (max-width:1024px) {
    .serice-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 15px;
    }
    .service__image--wrapper {
        max-height: 320px;
    }
}
@media (max-width: 768px) {
    .serice-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .service__image--wrapper {
        max-height: 220px;
        max-width: 100%;
    }
}