.why-block .why-block__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-block .why-block__img {
    position: relative;
    width: 100%;
    border-radius: 2px;
    grid-row: span 2;
    overflow: hidden;
}

.why-block .why-block__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 10%;
    display: block;
}

.why-block .item-why {
    position: relative;
    padding: 30px;
    border-radius: 2px;
    background: var(--background-thirdly);
    overflow: hidden;
}

.why-block .item-why__decor {
    position: absolute;
}

.why-block .item-why:nth-child(even) .item-why__decor {
    top: 0;
    right: 0;
    width: 116px;
    height: 280px;
}

.why-block .item-why:nth-child(odd) .item-why__decor {
    bottom: 0;
    left: 0;
    width: 360px;
    height: 82px;
}

.why-block .item-why__decor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-block .item-why__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    height: 100%;
}

.why-block .item-why__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    width: 60px;
    height: 60px;
    background: var(--background);
}

.why-block .item-why__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.why-block .item-why__bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 1450px) {
    .why-block .why-block__items {
        gap: 20px;
    }
    .why-block .item-why__content {
        gap: 30px;
    }
}
@media (max-width: 1192px) {
    .why-block .why-block__items {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-block .item-why:nth-child(7n + 7) {
        grid-column: span 2;
    }
}
@media (max-width: 992px) {
    .why-block .why-block__items {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-block .item-why:nth-child(7n + 7) {
        grid-column: span 1;
    }
}
@media (max-width: 768px) {
    .why-block .why-block__items {
        gap: 10px;
    }
    .why-block .why-block__img {
        grid-row: span 2;
    }
    .why-block .item-why {
        padding: 20px;
    }
    .why-block .item-why__content {
        gap: 20px;
    }
}
@media (max-width: 650px) {
    .why-block .why-block__items {
        display: flex;
        flex-direction: column;
    }
    .why-block .why-block__img {
        min-height: 300px;
    }
}