body {
    background-color: #4a525b;
    margin: 0;
    padding-bottom: 60px;
    /* Altura do rodapé */
}

.footer {
    background-color: #2b3035;
    padding: 5px;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 52px;
    /* Altura do rodapé */
}

.mobile-images {
    display: none;
}

.desktop-images {
    display: block;
}

@media (max-width: 768px) {
    .mobile-images {
        display: block;
    }

    .desktop-images {
        display: none;
    }
}


.font-md {
    font-size: 28px;
}

@media (max-width: 767.98px) {
    .font-md {
        font-size: 18px;
    }
}



body,
html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#page-content {
    flex: 1;
    background-color: aliceblue;
}

.small-font h5 {
    font-size: 16px;
}
.small-font p {
    font-size: 14px;
}