/*settings*/
	* {margin: 0; padding: 0; outline: none; transition: .3s; font-family: 'Century Gothic', sans-serif; color: #373636;}
	input, textarea, button, select, label {border: none; cursor: pointer; box-sizing: border-box;}
	button {position: relative; overflow: hidden; cursor: pointer; font-size: 16px;}
	button:after {content: ''; position: absolute; width: 20px; height: 200%; background: rgba(255,255,255,.5); top: -20px; left: -100%; transform: rotateZ(35deg); transition: 1.2s; animation: btn_play 5s infinite;}
	button:hover:after {left: 120%; transition: 1.2s;}
	a {text-decoration: none; cursor: pointer;}
	li {list-style-type: none;}
	img {max-width: 100%; height: auto;}
	.container {width: 1180px; max-width: 100%; margin: 0 auto;}
/*settings*/
/*fonts*/
	@font-face {
	  font-family: Century Gothic;
	  src: local("Century Gothic"),
	       local("Century Gothic"),
	       url(centurygothic.ttf);
	}

	@font-face {
	  font-family: Century Gothic;
	  src: local("Century Gothic"),
	       local("Century Gothic"),
	       url(centurygothic_bold.ttf);
	}

	.heading h2 {margin-bottom: 40px;}
/*fonts*/