section .t-i-t--container {
    width: 100%;
    max-width: 1400px;
    padding: 0 1rem;
    margin: 0 auto;
}

section .t-i-t--heading {
    max-width: 500px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

section .t-i-t--content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
section .t-i-t--text {
    max-width: 200px;
}
section .t-i-t--image {
    max-width: 930px;
    flex-grow: 1;
    padding: 0 1rem;
}

section .t-i-t--image img {
    height: auto;
    width: 100%;
}

/* TABLET */

@media screen and (max-width: 1220px) {
    section .t-i-t--content {
        flex-wrap: wrap;
    }
    section .t-i-t--text:first-of-type {
        order: 2;
    }
    section .t-i-t--text:last-of-type {
        order: 3;
    }
    section .t-i-t--image {
        order: 1;
        width: 100%;
    }
}

/* MOBILE */

@media screen and (max-width: 760px) {
    section .t-i-t--content {
        flex-direction: column;
        align-items: center;
    }
    section .t-i-t--text {
        text-align: center;
    }
    section .t-i-t--image {
        padding: 0;
    }
}
