.crea .bento {
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 10px;
}

.crea .projects {
    position: relative;
    height: 300px;
    width: 90vw;
    overflow: hidden;
    border-radius: 20px;
    background-color: #d7d7d7;
    grid-row: 3 / 7;
    grid-column: 1 / 13;
}

.crea>.bento>img:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.crea>.bento>img:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
}
.crea>.bento>img:nth-child(3) {
    grid-column: 5 / 7;
    grid-row: 1 / 3;
}
.crea>.bento>img:nth-child(4) {
    grid-column: 7 / 9;
    grid-row: 1 / 3;
}
.crea>.bento>img:nth-child(5) {
    grid-column: 9 / 11;
    grid-row: 1 / 3;
}
.crea>.bento>img:nth-child(6) {
    grid-column: 11 / 13;
    grid-row: 1 / 3;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.crea>.bento>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.crea .slide {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    transition: all .5s;
    border-radius: 20px;
}

.crea .slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;    
    border-radius: 20px;
}

.crea .slide.active {
    left: 0;
}