/*==========  Desktop First Method  ==========*/


/* 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) {}


/* Extra Small Devices, Phones */

@media only screen and (max-width: 480px) {
}


/* Custom, iPhone Retina */

@media only screen and (max-width: 320px) {
    .tagline {
        padding-top: 0;
    }
    .tagline p {
        font-size: 30px;
    }
}


/*==========  Mobile First Method  ==========*/


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) {
    .tagline {
        padding-top: 0;
    }
    .tagline p {
        font-size: 30px;
    }
}


/* Extra Small Devices, Phones */

@media only screen and (min-width: 480px) {
    .tagline {
        padding-top: 0;
    }
    .tagline p {
        font-size: 35px;
    }
     .icons a {
        font-size: 18px;
    }
    .link a {
        font-size: 14px;
    }
}


/* Small Devices, Tablets */

@media only screen and (min-width: 768px) {
     .tagline {
        padding-top: 50px;
    }
    .tagline p {
        font-size: 45px;
    }
     .icons a {
        font-size: 25px;
    }
    .link a {
        font-size: 16px;
    }
}


/* Medium Devices, Desktops */

@media only screen and (min-width: 992px) {
    .tagline {
        padding-top: 50px;
    }
    .tagline p {
        font-size: 48px;
    }
     .icons a {
        font-size: 25px;
    }
    .link a {
        font-size: 16px;
    }
}


/* Large Devices, Wide Screens */

@media only screen and (min-width: 1200px) {
    .tagline {
        padding-top: 50px;
    }
    .tagline p {
        font-size: 48px;
    }
    .icons a {
        font-size: 25px;
    }
    .link a {
        font-size: 16px;
    }
}