body:not(.home) .container-margin-120 {
	margin-top: 0;
}
.serice-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
/* .service__image--wrapper {
    max-width: 490px;
    max-height: 460px;
    width: 100%;
    height: 100vh;
    margin-bottom: 15px;
    overflow: hidden;
}
.service__image {    
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}
.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-item:hover .service__image {
    transform: scale(1.1);
}
.service-item:hover .service__name {
    color: var(--primary);
}
.service-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%;
    }
}