@charset "UTF-8";
/* CSS Document */



/*small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) { ... }

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { ... }

/*large devices (desktops, 992px and up)*/
@media (min-width: 992px) { ... }

/*x-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
	h1{font-size: 56px;}
	h2{font-size: 48px;}
	h3{font-size: 36px;}
	h4{font-size: 24px;}
	h5{font-size: 20px;}


	.tns-controls button:first-child{
		left: 0;
	  bottom: 50px;
	  background: transparent;
	}

	.tns-controls button:last-child{
		  right: 0;
	    bottom: 50px;
	    background: transparent;
	}

	footer{
		text-align: initial;
	}

	footer ul{
		text-align: initial;
	}
}

/*XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) { ... }