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

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

#profile-ava{
max-height: 175px;
border-radius: 175px;
}

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

#profile-ava{
max-height: 125px;
border-radius: 125px;
}

}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {

#profile-ava{
max-height: 75px;
border-radius: 75px;
}
}

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

		
}