.interview-container {
    margin-bottom: 50px;
}

.interview-title {
    margin: 50px 30px 30px 30px;
    line-height: 2rem;
}

.interview-title > span {
    position: relative;
    font-weight: 300;
    color: black;
    font-size: 2.5rem;
}

.interview-title > span > i {
    position: absolute;
    color: var(--dark-grey-color);
    font-size: 3rem;
    top: -25px;
    right: -60px;
}

.interview-group:not(:last-child) {
    margin-bottom: 20px;
}

.img-left-text-right-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 0;
}

.text-left-img-right-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.img-left-container {
    width: 100%;
}

.img-left-container > img {
    max-width: 100%;
    height: auto;
}

.text-right-container {
    padding: 10px 30px 30px 30px;
    max-width: 550px;
}

.text-left-container {
    padding: 30px;
    max-width: 550px;
}

.img-right-container {
    display: none;
}

.question-container:not(:last-child) {
    margin-bottom: 20px;
}

.question {
    font-size: 0.85rem;
    text-align: justify;
    margin: 0;
    line-height: 1rem;
}

.answer {
    margin: 0;
    text-align: justify;
    font-size: 0.6rem;
    color: #404040;
}

.water-break {
    display: flex;
    margin: 30px 0;
}

.water-break > span {
    background-color: var(--dark-grey-color);
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    width: 200px;
}

@media (min-width: 1050px) {
    .interview-container {
        margin-bottom: 100px;
    }

    .interview-title {
        margin: 50px 16% 30px 16%;
        line-height: 2.6rem;
    }

    .interview-title > span {
        position: relative;
        font-weight: 300;
        color: black;
        font-size: 3rem;
    }

    .interview-title > span > i {
        position: absolute;
        color: var(--dark-grey-color);
        font-size: 3.5rem;
        top: -25px;
        right: -70px;
    }

    .interview-group:not(:last-child) {
        margin-bottom: 20px;
    }

    .img-left-text-right-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding-bottom: 100px;
    }

    .text-left-img-right-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }

    .img-left-container {
        width: 30%;
    }

    .img-left-container > img {
        max-width: 90%;
        height: auto;
    }

    .text-right-container {
        width: 70%;
        max-width: 650px;
        margin-left: 10px;
        padding: 0;
    }

    .text-left-container {
        width: 70%;
        max-width: 650px;
        margin-right: 10px;
        padding: 0;
    }

    .img-right-container {
        width: 30%;
        display: flex;
        justify-content: end;
        align-items: center;
    }

    .img-right-container > img {
        max-width: 90%;
        height: auto;
    }

    .question-container:not(:last-child) {
        margin-bottom: 20px;
    }

    .question {
        font-size: medium;
        text-align: justify;
        margin: 0;
    }

    .answer {
        margin: 0;
        text-align: justify;
        font-size: 0.8rem;
        color: #404040;
        line-height: revert;
    }

    .water-break {
        display: flex;
        margin: 30px 0;
    }

    .water-break > span {
        background-color: var(--dark-grey-color);
        padding: 10px 20px;
        color: white;
        font-weight: 600;
        width: 200px;
    }
}