@media screen and (max-width: 720px) {
    .exception-content {
        min-height: 200px;
        .imgException {
            max-width: 100px;
            margin-right: 10px;
        }
        .title {
            margin: 10px 0;
            font-size: 14px;
        }
        .description {
            font-size: 12px;
        }
    }
}

@media screen and (min-width: 721px) and (max-width: 1199px) {
    .exception-content {
        min-height: 300px;
        .imgException {
            max-width: 180px;
            margin-right: 30px;
        }
        .title {
            margin: 10px 0;
            font-size: 20px;
        }
        .description {
            font-size: 14px;
        }
    }
}

@media screen and (min-width: 1200px) {
    .exception-content {
        min-height: 500px;
        .imgException {
            max-width: 260px;
            margin-right: 50px;
        }
        .title {
            margin: 20px 0;
            font-size: 24px;
        }
        .description {
            font-size: 16px;
        }
    }
}
