/* Solutions for mobile and small screens  */
#banner {
	min-height: 500px;
}
@media (max-width: 850px) {
    #banner {
	min-height: 300px;
    }
}

@media (max-width: 650px) {
    #banner {
	min-height: 100px;
    }
}

#banner .copy {
 background: none repeat scroll 0 0 rgba(49, 71, 92, 0.5);
}
