.materials {
    margin-bottom: 120px;
}
.materials-title {
    font-family: 'Oswald';
    font-weight: bold;
    font-size: 40px;
    line-height: 60px;
    color: #434343;
    margin-bottom: 42px;
}
.materials-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.materials-item {
    width: 24%;
    height: 203px;
    position: relative;   
    box-shadow: 12px 4px 24px rgba(0, 0, 0, 0.08);
}
.materials-item__img {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    
    position: relative;
}
.materials-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    position: relative;
}
.materials-item__title {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
    font-family: 'Lato';
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
}

@media (max-width: 767px) { 
    .materials-title {
        font-size: 28px;
        line-height: 36px;
    }    
}

@media (max-width: 560px) {
    .materials-items {
        row-gap: 30px;
    }
    .materials-item {
        width: 47%;
    }
}