/*Start  Of the day 08-09-2024*/
.products-work-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 31px 15px;
}
.products-work-list .work-item h2, .products-work-list .work-item h2 a {
    font-family: Roboto;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    color: #212121;
    margin: 7px 0 0 0;
    display: inline-block;
}
.products-work-list .work-item h2:hover, .products-work-list .work-item h2 a:hover {
    color: #ad2526;
}
.products-at-work-wrap {
    position: relative;
}
.products-at-work-wrap::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -150px;
    right: auto;
    bottom: 0;
    height: 120px;
    width: 120px;
    background: url(../images/background-img.png);
}
@media screen and (max-width: 1200px){
    .products-work-list .work-item h2 {
        font-size: 18px;
        line-height: 26px;
    }
}
@media screen and (max-width: 1023px){
    .products-work-list .work-item h2 {
        font-size: 16px;
        line-height: 24px;
    }
}
@media screen and (max-width: 767px) {
    .products-work-list {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 35px;
    }
}
@media screen and (min-width: 580px) and (max-width: 767px) {
    .products-work-list {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px 15px;
    }
}
/*End  Of the day 08-09-2024*/