.next .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    padding: 20px;
}

.next .image {
    flex: 1 1 100%;
    /* background-image: url('https://placehold.co/600x800'); */
    background-size: cover;
    background-position: center;
    height: 300px;
    /* filter: grayscale(100%) sepia(100%) hue-rotate(90deg) saturate(300%); */
}

.next .img1 {
    background-image: url('./assets/img1.png');
    border-radius: 30px;
}

.next .img2 {
    background-image: url('./assets/img2.png');
    border-radius: 30px;
}

.next .img3 {
    background-image: url('./assets/img3.png');
    border-radius: 30px;
}

.next .img4 {
    background-image: url('./assets/img4.png');
    border-radius: 30px;
}

.next .text {
    flex: 1 1 100%;
    padding: 20px;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .next .image {
        flex: 1;
        height: 500px;
    }
    .next .text {
        flex: 1;
        padding-left: 40px;
    }
}