.oracle-system {
    padding-top: 160px;
}

.oracle-system__inner {
    display: flex;
    gap: 30px;
}

.oracle-system__description {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.oracle-system__image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: fit-content;
}

.oracle-system__image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.oracle-system__title {
    margin-bottom: 42px;
}

@media(max-width: 1199px) {
    .oracle-system {
        padding-top: 120px;
    }

    .oracle-system__inner {
        gap: 31px;
    }

    .oracle-system__title {
        margin-bottom: 32px;
    }
}    


@media(max-width: 768px) {
    .oracle-system {
        padding-top: 80px;
    }

    .oracle-system__inner {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .oracle-system__image {
        height: 458px;
        align-items: normal;
        flex: auto;
    }

    .oracle-system__title {
        margin-bottom: 16px;
    }
}