.banner {
    width:100%;
      height: 300px;
    background-size:100% ;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3) ), url( "/static/images/img1.jpeg");
    position: relative;
}

#banner_heading{
  display: flex;
  align-items: center;
  justify-content: center;
 padding-top: 150px;
  margin: 0 auto;
}


.parallax{
    background-image: url( "/static/images/can_banner.jpeg");
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 0;
}
.text-box{
	height: 600px;
	padding: 50px;
}
@media only screen and (max-device-width: 1024px) {
    .parallax {
        background-attachment: scroll;
    }
}

h5,h4{
font-weight:bold;
}

@media only screen and (max-width: 600px) {
.parallax{

    min-height: 300px;

}
.banner {

    background-size:100% 100% ;

}

}