/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
    .title {
        font-size: 3.5rem !important;
    }

    .subtitle {
        font-size: 3.25rem !important;
    }

    .contact-mail-pt {
        font-size: 1.5rem !important;
        margin-top: 0.25rem !important;
    }

    .contact-icon {
        font-size: 1.75em;
    }

}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {

}