.service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}
.service-containre-background {
    overflow: hidden;
    position: relative;
}
.service-block__wrapper {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.service-block__wrapper::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}
#service-block .title-block {
    position: relative;
    z-index: 2;
}
#service-block .btn {
	margin-top: 30px;
}
@media(max-width: 1024px) {
    .service-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-item {
        min-height: 150px;
    }
}
@media (max-width: 550px) {
    .service-list {
        grid-template-columns: 1fr;
    }
}