        	@media all and (orientation:portrait) {
  				/* Styles for Portrait screen */
  				#content{
  					display: none;
  				}
  				#media_chg{
  					display: block;
  					width: 100%;
  					height:auto;
  					//background: red;
  					text-align: center;
  				}
  				.img_rotate{
  					width: 70%;
  					height: auto;
  					margin: 15% auto;
  				}
          .imageCenter {
            width: 70% !important;
          }
          .logo{
              width: 20% !important;
          }
          .lineimage{
              width: 30% !important;
          }

			}
			@media all and (orientation:landscape) {
			  /* Styles for Landscape screen */
			  #media_chg{
			  	display: none;
			  }
			  #content{
			  	display: block;
			  }
			}
      @media only screen and (max-width : 1440px) and (max-height : 2560px)  and (orientation:portrait){
          /* Styles here */
          .imageCenter {
              width: 60% !important;
            }
        }
