/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 850px) {
    .a-footer .ux-menu{
        flex-direction: row;
        justify-content: center;
    }
    .a-footer .ux-menu-link__link {
        padding: 0 7px;
        min-height: unset;
        border-left: 1px solid #fff;
        line-height: 1;
        font-weight: bold;
        white-space: nowrap;
    }
    .a-footer .ux-menu-link:first-child .ux-menu-link__link{
        border: unset;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {
    .a-banner p:first-child{
        font-size: 24px;
    }
    .a-banner p:nth-child(2){
        font-size: 20px;
    }
    .a-banner p:nth-child(3){
        font-size: 14px;
    }
    .a-banner .a-logo{
        max-width: 100px;
    }
  
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .a-banner p{
        line-height: 1;
        margin-bottom: 2px;
    }
    .a-banner p:first-child{
        font-size: 14px;
    }
    .a-banner p:nth-child(2){
        font-size: 12px;
    }
    .a-banner p:nth-child(3){
        font-size: 9px;
    }
    .a-banner .a-logo{
        max-width: 60px;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}
