.new-sections{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: dense;
    gap: 30px;
    margin: 100px 0;
}
.new-sections .new-sections__item:nth-child(1), .new-sections .new-sections__item:nth-child(6){
    grid-row: span 2;
    height: 970px;
}
.new-sections .new-sections__item:nth-child(4), .new-sections .new-sections__item:nth-child(8){
    grid-column: span 2;
}
.new-sections__item{
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 470px;
}
.new-sections__img{
    width: 100%;
    height: calc(100% - 30px);
}
.new-sections__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new-sections__text{
    color: var(--black, #191919);
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
    .new-sections{
        margin: 50px 0;
    }
    .new-sections__item{
        height: 300px;
    }
    .new-sections{
        grid-template-columns: 1fr;
    }
    .new-sections .new-sections__item:nth-child(1), .new-sections .new-sections__item:nth-child(6){
        grid-row: span 1;
        height: 300px
    }
    .new-sections .new-sections__item:nth-child(4), .new-sections .new-sections__item:nth-child(8){
        grid-column: span 1;
    }
}