.fails {
    height: 190vh;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}
.fails-img {
    width: 100%;
    height: 50%;
    margin-bottom: 2%;
}
.fails-img img {
    width: 60%;
}
.text-fails {
    width: 100%;
    height: 150%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.initial-text-fails {
    width: 90%;
    height: 30%;
}
.initial-text-fails h3 {
    font-size: 200%;
}
.initial-text-fails p {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 140%;
}
.questions-fails {
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.question {
    background-color: #2A6AA1;
    width: 90%;
    color: #fff;
    font-weight: 300;
    display: flex;
    flex-direction: row;
    align-items: start;
    min-height: 20%;
    border-radius: 0 10px 10px 0;
}
.question h3 {
    color: #4DB0DF;
    font-size: 200%;
}
.question p {
    font-size: 100%;
    text-transform: uppercase;
}
.question-mid {
    margin-left: 10%;
    border-radius: 10px 0 0 10px;
}
.solutions {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10%
}
.solutions img {
    width: 50px;
}
.solutions-desk {
    display: none;
}

@media (min-width: 840px) {
    .fails {
        flex-direction: row;
        height: 140vh;
        align-items: start;
    }
    .initial-text-fails {
        width: 90%;
        height: 30%;
    }
    .solutions {
        display: none;
    }
 
    .text-fails {
        width: 60%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }
    .initial-text-fails h3 {
        font-size: 130%;

    }
    .initial-text-fails p {
        font-weight: 600;
        font-size: 100%;
        
    }
    .fails-img {
        width: 40%;
        height: 100%;
        
    }
    .fails-img img {
        height: 100%;
        width: 100%;
    }

    .questions-fails {
        width: 100%;
        height: 60%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .question {
        background-color: #fff;
        width: 90%;
        color: #363636;
        font-weight: 300;
        display: flex;
        flex-direction: row;
        align-items: center;
        min-height: 10%;
        border-radius: 0 10px 10px 0;
    }
    .question-mid {
        margin-left: 0;
        border-radius: 10px 0 0 10px;
    }
    .solutions-desk {
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 10%;
        color: #363636;
        font-weight: 300;
    }
    .solutions-desk img {
        width: 20px;
        height: 20px;
    }
}