.ita-0d99a918-container {
    display: flex;
    flex-direction: row;
    height: 150px;
    width: 70%;
    overflow: hidden;
    gap: 10px;
}

.ita-0d99a918-item {
    display: flex;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s ease;
    border-radius: 8px;
    background: #f5f5f5;
}

.ita-0d99a918-item.ita-0d99a918-active {
    flex: 4;
}

.ita-0d99a918-content {
    flex: 0 0 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ita-0d99a918-item.ita-0d99a918-active .ita-0d99a918-content {
    flex: 1;
    opacity: 1;
    padding: 30px;
}

.ita-0d99a918-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.ita-0d99a918-item.ita-0d99a918-active .ita-0d99a918-image {
    filter: grayscale(0%);
}

@media (max-width: 767px) {
    .ita-0d99a918-container {
        flex-direction: column;
        height: 600px;
    }
}
