/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
  /* CSS */
  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
  /* CSS */
  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  
  /* CSS */
  
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/



/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/



/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 767px) {
  
	.container{
		width: 90vw;
		padding-top: 10px;
	}
	.header img{
		min-height: 200px;
		object-fit: cover;
		border-radius: 10px;
	}
	.header span{
		font-size: 2em;
		width: 90%;
		text-align: center;
	}
	.header .loading img{
		bottom: 10px;
		width: 80px;
    	min-height: auto;
	}
 	.content{
 		width: 70%;
 	} 
 	h2{
 		font-size: 1.2em;
 	}
 	h3{
 		font-size: 1.1em;
 	}
 	h3 span{
 		font-size: 1em;
 	}
 	.footer{
 		flex-direction: column-reverse;
    	align-items: end;
 	}
 	.footer div{
 		width: 100%;
 		text-align: left;
 		margin-bottom: 20px;
 	}
 	.footer a{
 		flex-direction: row-reverse;
    	align-items: center;
 	}
}

@media (min-width: 481px) and (max-width: 767px) {
  
  .footer{
 		flex-direction: row;
    	align-items: center;
    	justify-content: space-between;
 	}
 	.footer div{
 		width: unset;
 		text-align: unset;
 		margin-bottom: unset;
 	}
 	.footer a{
 		flex-direction: row;
 	}
  
}
@media (min-width: 768px) and (max-width: 1024px) {
    .header .loading img{
    	bottom: 10px;
    }
}