/*
Theme Name: STC Version 0.01
Theme URI: Your Theme's URI
Description: A brief description.
Version: 1.0
Author: Martin Mulholland
Author URI: Your website address.
*/

/*Global Styles*/
.footer{
    width: 100%;
    text-align: center;
    color: #fff;
    padding-bottom: 20px;
}
.footer-brand{
    max-width: 25%;
}
.social-media ul{
    list-style: none;
    display: table;
    padding-top: 20px;
}
.social-media ul li{
    display: table-cell;
    padding-left: 10px;
    padding-right: 10px;
}
.social-media ul li a{
    color: #fff;
}
.social-media ul li a:hover{
    color: #d3d3d3;
}
/*Custom Styles*/

/* Media Queries ----------- */
@media only screen 
and (min-width : 1px) 
and (max-width : 449px) {
    .footer-brand{
        max-width: 60%;
    }
}
@media only screen 
and (min-width : 450px) 
and (max-width : 767px) {
    .footer-brand{
        max-width: 40%;
    }
}
@media only screen 
and (min-width : 768px) 
and (max-width : 991px) {

}