.bato-3d {
    overflow-x: clip;
}

.bato-3d__inner {
    display: flex;
    gap: 2rem;
}

.bato-3d__content {
    flex: 0 0 auto;
    width: calc(50% - 2rem);
    padding-block: 16rem;
}

.bato-3d__title {
    font-size: 4.2rem;
    margin-bottom: 1.5rem;
}

.bato-3d__text {
    color: var(--color-gray-dark);
    margin-bottom: 6rem;
}

.bato-3d-preview {
    width: 21rem;
}

.bato-3d-preview__title {
    margin-bottom: 0.8rem;
}

.bato-3d-preview__image {
    position: relative;
}

.bato-3d-preview__image::before {
    content: url("../img/virtual-icon.svg");
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 1;
}

.bato-3d__animation {
    flex: 0 0 auto;
    width: 50vw;
}

.bato-3d__animation video {
    outline: none !important;
    border: none !important;
    mix-blend-mode: multiply;
}

@media screen and (max-width: 768.9px) {
    .bato-3d__inner {
        flex-direction: column;
        padding-bottom: 8rem;
    }

    .bato-3d__animation {
        width: auto;
        margin-inline: -2rem;
        order: -1;
    }

    .bato-3d__content {
        width: 100%;
        padding: 0;
    }

    .bato-3d__inner {
        gap: 3.5rem;
    }

    .bato-3d__text {
        margin-bottom: 3.5rem;
    }
}

@media screen and (max-width: 575.9px) {
    .bato-3d-preview {
        width: 100%;
    }

    .bato-3d-preview__image::before {
        scale: 1.7;
    }
}