
.grow-block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    min-height: 60dvh;
}

.grow-block .grow-block__item {
    position: relative;
    display: grid;
    place-items: center;
    width: 80%;
    text-align: center;
    text-decoration: none !important;
    transition: width .3s ease-in-out;
}

.grow-block .grow-block__item:hover {
    width: 100%;
}

.grow-block .grow-block__item .picture-background {
    position: absolute;
    width: 120%;
    height: 100%;
    z-index: -1;
}

.grow-block .grow-block__item .picture-background::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--wp--preset--color--dark);
    opacity: .6;
    transition: opacity .3s ease-in-out;
}

.grow-block .grow-block__item:hover .picture-background::after {
    opacity: 1;
}

.grow-block .grow-block__item .picture-background {
    clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
}

.grow-block .grow-block__item:nth-child(1) .picture-background {
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.grow-block .grow-block__item:nth-last-child(1) .picture-background {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}

.grow-block .grow-block__item .picture-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grow-block .grow-block__item h3 {
    max-width: 80%;
    font-size: var(--wp--preset--font-size--h-3) !important;
    font-weight: 800;
    color: var(--wp--preset--color--light) !important;
    z-index: 100;
}

@media not all and (min-width: 1024px) {
    .grow-block {
        flex-direction: column;
        gap: 20px;
    }

    .grow-block .grow-block__item {
        width: 100%;
        height: 300px;
    }

    .grow-block .grow-block__item .picture-background {
        width: 100%;
    }
}

@media not all and (min-width: 480px) {
    .grow-block .grow-block__item {
        height: 260px;
    }
}