@charset "utf-8";
/* CSS Document */

	body{
	margin: 0;
	padding:0;
		}

	.container-desktop{
    width: 100%;
    margin: 0;
    text-align: center;
}
		
	img {
		width: 100%;
     }

	.container-mobile{
    display: none;}
	

			
			/* Small Tablets */
   @media only screen and (max-width:767px) {
	.container-desktop{
	display: none}
	
	.container-mobile{
	display: block;
    width: 100%;
    margin: 0;
    text-align: center;
	height: 100hv;}  }
		
		@media (max-width: 320px) {
	.container-desktop{
	display: none}
	
	.container-mobile{
	display: block;
    width: 100%;
    margin: 0;
    text-align: center;
	height: 100hv;}
			}
			
		
