.mobile,.tablet, .phablet, .laptop {
		display: none;
		color: white;
		font-size: 72px;
	}


/*smartphone - use this*/

@media screen and (max-width: 479px){
	figure#mobile {
		width: 375px;
		height: 627px;
		background-image: url('../img/media/mobile.jpg');
		background-size: contain;
		background-repeat: no-repeat;
	}

	 .mobile {
		display: initial;
	}
}

/*large smart phone phablet*/

@media screen and (min-width: 480px) and (max-width: 766px){
	figure#phablet {
		width: 480px;
		height: 768px;
		background-image: url('../img/media/phablet.jpg');
		background-size: contain;
		background-repeat: no-repeat;
	}

	 .phablet {
		display: initial;
	}
}

/*tablet - use this*/

@media screen and (min-width: 767px) and (max-width: 1365px){
	figure#tablet {
		width: 768px;
		height: 1024px;
		background-image: url('../img/media/tablet.jpg');
		background-size: contain;
		background-repeat: no-repeat;

	}

	 .tablet {
		display: initial;
	}
}

/*laptop - use this*/

@media screen and (min-width: 1366px) and (max-width: 1919px){

	figure#laptop {
		width: 1366px;
		height: 768px;
		background-image: url('../img/media/laptop.jpg');
		background-size: contain;
		background-repeat: no-repeat;
	}

	 .laptop {
		display: initial;
	}
}


