.ita-container-eea760b1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: 600px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .ita-container-eea760b1 {
        flex-direction: row;
    }
}
.ita-item-eea760b1 {
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: flex 0.5s ease;
    overflow: hidden;
    border-radius: 8px;
    background: #222;
    display: flex;
    align-items: center;
}
.ita-item-eea760b1.active {
    flex: 3;
}
.ita-image-wrapper-eea760b1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: width 0.5s ease, right 0.5s ease;
}
.ita-item-eea760b1.active .ita-image-wrapper-eea760b1 {
    width: 50%;
    right: 0;
}
.ita-image-eea760b1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}
.ita-item-eea760b1.active .ita-image-eea760b1 {
    filter: grayscale(0%);
}
.ita-content-eea760b1 {
    position: absolute;
    left: 0;
    width: 50%;
    padding: 30px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    color: #fff;
}
.ita-item-eea760b1.active .ita-content-eea760b1 {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
@media (max-width: 767px) {
    .ita-item-eea760b1.active .ita-image-wrapper-eea760b1 {
        width: 100%;
        height: 50%;
        bottom: 0;
        top: auto;
    }
    .ita-content-eea760b1 {
        width: 100%;
        height: 50%;
        top: 0;
        padding: 20px;
    }
}