.ita-container-2be59906 {
    display: flex;
    width: 100%;
    height: 500px;
    gap: 10px;
    overflow: hidden;
}
.ita-item-2be59906 {
    flex: 1;
    display: flex;
    cursor: pointer;
    overflow: hidden;
    transition: flex 0.5s ease;
    border-radius: 10px;
}
.ita-item-2be59906.active {
    flex: 5;
    cursor: default;
}
.ita-image-2be59906 {
    flex: 1;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}
.ita-item-2be59906.active .ita-image-2be59906 {
    filter: grayscale(0%);
}
@media (max-width: 767px) {
    .ita-container-2be59906 {
        flex-direction: column;
        height: 600px;
    }
    .ita-item-2be59906 {
        flex: 1;
        transition: flex 0.4s ease;
    }
    .ita-item-2be59906.active {
        flex: 5;
    }
}