/* block */

	.footer {

		display: block;

		width: 100%;
		height: auto;

		text-align: center;

		/*padding: 50px 20px;*/
		padding: 30px 15px;

		background-repeat: no-repeat;
		background-position: center 10px;
		background-size: cover;
		background-image: url('../media/images/bg-footer.png');
	}

/* text */

	.footer__text {

		display: inline-block;

		width: auto;
		height: auto;

		font-family: 'VAGRoundedLTCom';
		font-style: normal;
	}

		.footer__text--copyright {

			font-size: 16px;
			font-weight: 300;

			color: #ffffff;
		}

			.footer__text--copyright:before {

				display: inline-block;

				width: auto;
				height: auto;

				content:"\00a9";

				margin-right: 5px;
			}

/* RWD */

	@media only screen and (min-width: 1024px) {

		/* block */

			.footer {

				padding: 35px 15px;
			}
	}

	@media only screen and (min-width: 1200px) {

		/* block */

			.footer {

				padding: 40px 15px;
			}
	}

	@media only screen and (min-width: 1600px) {

		/* block */

			.footer {

				padding: 50px 15px;
			}
	}