﻿/* SEÇÃO TWO COLUMNS */
/* .itl-two-cols {} */

/* SEÇÃO TWO COLUMNS - WRAPPER */
.itl-two-cols-wrapper {
    display: flex;
    flex-direction: row;
}

.itl-two-cols-wrapper.row-reverse {
    flex-direction: row-reverse;
}

/* SEÇÃO TWO COLUMNS - COL */
.itl-two-col {
    width: 50%;
}

/* SEÇÃO TWO COLUMNS - COL IMAGE */
/* .itl-two-col:nth-child(1) {} */

/* SEÇÃO TWO COLUMNS - COL IMAGE [IMAGE] */
.itl-two-col-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SEÇÃO TWO COLUMNS - COL TEXT */
.itl-two-col:nth-child(2) {
    padding: 13rem 8.5% 13rem 6.5%;
    background-color: #231F20;
}

/* SEÇÃO TWO COLUMNS - COL TEXT [TITLE] */
/* .itl-two-col-title {} */

/* SEÇÃO TWO COLUMNS - COL TEXT [TEXT] */
.itl-two-col-text {
    margin-top: 1.6rem;
}

.itl-two-col-text * {
    margin: 0;
}

@media screen and (max-width: 992px) {
    .itl-two-cols-wrapper,
    .itl-two-cols-wrapper.row-reverse {
        flex-direction: column-reverse;
    }
    
    .itl-two-col {
        width: 100%;
    }

    .itl-two-col-img {
        height: 70vh;
    }
}

@media screen and (max-width: 992px) {
    .itl-two-col:nth-child(2) {
        padding: 7rem 4rem;
    }
}

@media screen and (max-width: 600px) {
    .itl-two-col-img {
        height: 50vh;
    }
}