.banners{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; 
    max-height: 300px;
    width: 100%; 
    max-width: 100%; 
    background-position: top center; 
    background-repeat: no-repeat;
    background-size: cover;  
    font-size: 34px;
    color: #fff;
}



/* Media Query for Mobile Devices */
@media (max-width: 480px) {
	.banners{
		height: 100%; 
        max-height: auto;
	}
    .feedback{
        margin-top: 20px !important;
    }
 }
  
 /* Media Query for low resolution  Tablets, Ipads */
 @media (min-width: 481px) and (max-width: 767px) {
	.banners{
		height: 100%; 
        max-height: auto;
	}
    .feedback{
        margin-top: 20px !important;
    }
 }
  
 /* Media Query for Tablets Ipads portrait mode */
 @media (min-width: 768px) and (max-width: 1024px){
	
	.banners{
		height: 100%; 
        max-height: auto;
	}
    .feedback{
        margin-top: 20px !important;
    }
 }
  
 /* Media Query for Laptops and Desktops */
 @media (min-width: 1025px) and (max-width: 1280px){
	
 }
  
 /* Media Query for Large screens */
 @media (min-width: 1281px) {
	.banners{
		height: 100%; 
        max-height: auto;
	}
 }