/* On screens that are 992px wide or less, the background color is blue */
@media screen and (min-width: 992px) and (max-width: 1024px) {

    .h2,
    h2 {
        font-size: 22px;
    }
}

/* On screens that are 600px wide or less, the background color is olive */
@media screen and (max-width: 600px) {

    .h2,
    h2 {
        font-size: 20px;
    }

    .h3,
    h3 {
        font-size: 18px;
    }

    .h4,
    h4 {
        font-size: 16px;
    }

    .list.fa-ul {
        margin-left: -22px;
    }

    .callto {
        bottom: 0;
        position: fixed;
        z-index: 9999;
        transform: translate(1%, -2px);
        background-color: #dc3545;
        display: inline-block;
        padding: 5px 4px;
        border-radius: 39px;
    }
}
